Continue reading EE06a – MOTOR RATED TORQUE (FULL LOAD TORQUE) + MOTOR STARTING TORQUE
Tag Archives: Book
EE05 – MOTOR RATED TORQUE FROM HP IN LB-FT (FULL LOAD TORQUE) CALCULATOR
TEA BREAK WITH EXCEL: FINDING A SPECIFIC TEXT IN A CELL RANGE (OR IF THIS TEXT IS INCLUDED IN THIS RANGE OR NOT?)
Tea Rating: ☕
To find a specific text in a specific range we are using the formula;
Continue reading TEA BREAK WITH EXCEL: FINDING A SPECIFIC TEXT IN A CELL RANGE (OR IF THIS TEXT IS INCLUDED IN THIS RANGE OR NOT?)TEA BREAK WITH C++: DATA TYPES
TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINE
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/books/nanocad/
Continue reading TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINETEA BREAK WITH C++: VARIABLES
Since we learned basic input function at programming with C++, we need to talk a little more about the variables.
Variables are simply naming some data location in your pc. With variables you can store a value.
Continue reading TEA BREAK WITH C++: VARIABLESTEA BREAK WITH C++: Basic Input & endl
On line 9 in the previous example we give
int firstNumber, secondNumber, sum;
We define integer variables. These are first number with the definition firstNumber, and the second number defined as secondNumber. And the sum. These we defined as integer by writing “int” at the beginning.
Continue reading TEA BREAK WITH C++: Basic Input & endlTEA BREAK WITH NANOCAD : GETTING USED TO NANOCAD ENVIRONMENT
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/books/nanocad/
You may now start the software anytime by double clicking the shortcut on desktop or you can start it using the start section of the windows.
Continue reading TEA BREAK WITH NANOCAD : GETTING USED TO NANOCAD ENVIRONMENTTEA BREAK WITH C++ : Basic Comment Section for All programs
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/
Here these lines are comment section giving information about the program, and you need to include these lines so that another programmer can understand what it is about easily.
Continue reading TEA BREAK WITH C++ : Basic Comment Section for All programsTEA BREAK WITH C++: Basic Comment Section for All programs
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/
Here these lines are comment section giving information about the program, and you need to include these lines so that another programmer can understand what it is about easily.
Continue reading TEA BREAK WITH C++: Basic Comment Section for All programs