diff options
Diffstat (limited to '2195/CH3/EX3.2.3/ex_3_2_3.sce')
-rwxr-xr-x | 2195/CH3/EX3.2.3/ex_3_2_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2195/CH3/EX3.2.3/ex_3_2_3.sce b/2195/CH3/EX3.2.3/ex_3_2_3.sce new file mode 100755 index 000000000..1d2f8a17f --- /dev/null +++ b/2195/CH3/EX3.2.3/ex_3_2_3.sce @@ -0,0 +1,16 @@ +//Example 3.2.3 // resistance +clc; +clear; +close; +//given data : +Tc=240*10^-6;//in Nm +N=100; +L=40*10^-3; +d=30*10^-3; +B=1;//in Wb/m^2 +TdBYI=N*B*L*d; +I=Tc/TdBYI; +//voltage per division=I*(R/100) +R=100/I; +disp(R*10^-3,"resistance ,R(k-ohm) = ") +//UNIT IS TAKEN WRONG IN THE BOOK |