if you enter KW, volt and power factor, the tool will return min contractor size.
Continue reading EE03: 3 PHASE CONTACTOR SIZINGTag Archives: main
TEA BREAK WITH C++: MY FIRST C++ PROGRAM
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/
- //my first c++ program
- #include <iostream>
- using namespace std;
- int main(){
- cout<<“hello world!”;
- return 0;
- system(“pause”);
- }
- /* This ends
- the file */