diff options
Diffstat (limited to '3871/CH1/EX1.2')
-rw-r--r-- | 3871/CH1/EX1.2/Ex1_2.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3871/CH1/EX1.2/Ex1_2.sce b/3871/CH1/EX1.2/Ex1_2.sce new file mode 100644 index 000000000..86d56f056 --- /dev/null +++ b/3871/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,21 @@ +//=========================================================================================
+//chapter 1 example 2
+
+clc;
+clear all;
+
+//variable declarations
+If = 5; //full-scale reading of instrument in A
+Ra = 0.01; //ammeter resistance in ohm
+
+
+//calculations
+Pf = ((If)^2)*(Ra); //power sonsumption for full-scale deflection is W
+n = (If)/(Pf); //instrument efficiency in A per watts
+
+//result
+mprintf("power sonsumption for full-scale deflection = %3.2f W",Pf);
+mprintf("\ninstrument efficiency = %3.0f A per watts",n);
+
+
+//================================================================================================
|