diff options
Diffstat (limited to '1628/CH18/EX18.5/Ex18_5.sce')
-rwxr-xr-x | 1628/CH18/EX18.5/Ex18_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1628/CH18/EX18.5/Ex18_5.sce b/1628/CH18/EX18.5/Ex18_5.sce new file mode 100755 index 000000000..88eb3ca65 --- /dev/null +++ b/1628/CH18/EX18.5/Ex18_5.sce @@ -0,0 +1,15 @@ + + // Examle 18.5 + +Im=50*10^-6; // Current sensitivity +Rm=1000; // Internal resistance +Vf=50; // volt-meter range +Rs=(Vf/Im)-Rm; // The Value of Resister (Rs) +disp ('The Value of Resister (Rs) = '+string(Rs/1000)+' kilo-ohms'); + +n=Vf/(Im*Rm); // The Voltage Multiplying Factor (N) +disp('The Voltage Multiplying Factor (N) = '+string(n)); + + + + // p 767 18.5
\ No newline at end of file |