diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /695/CH2/EX2.28 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '695/CH2/EX2.28')
-rwxr-xr-x | 695/CH2/EX2.28/Ex2_28.sce | 14 | ||||
-rwxr-xr-x | 695/CH2/EX2.28/Ex2_28.txt | 14 | ||||
-rwxr-xr-x | 695/CH2/EX2.28/R2_28.txt | 3 |
3 files changed, 31 insertions, 0 deletions
diff --git a/695/CH2/EX2.28/Ex2_28.sce b/695/CH2/EX2.28/Ex2_28.sce new file mode 100755 index 000000000..7f884a34f --- /dev/null +++ b/695/CH2/EX2.28/Ex2_28.sce @@ -0,0 +1,14 @@ +//Caption:Determine the value of resistance
+//Exa:2.28
+clc;
+clear;
+close;
+V=220;//in volts
+R_a=0.1;//in ohms
+N_1=800;//in rpm
+N_2=520;//in rpm
+I_a1=20;//in ampers
+E_1=V-(I_a1*R_a);//in volts
+E_2=N_2*E_1/N_1;//in volts
+R_A=-(E_2-V+I_a1*R_a)/20;
+disp(R_A,'Additional resistance(in ohms)=');
\ No newline at end of file diff --git a/695/CH2/EX2.28/Ex2_28.txt b/695/CH2/EX2.28/Ex2_28.txt new file mode 100755 index 000000000..7f884a34f --- /dev/null +++ b/695/CH2/EX2.28/Ex2_28.txt @@ -0,0 +1,14 @@ +//Caption:Determine the value of resistance
+//Exa:2.28
+clc;
+clear;
+close;
+V=220;//in volts
+R_a=0.1;//in ohms
+N_1=800;//in rpm
+N_2=520;//in rpm
+I_a1=20;//in ampers
+E_1=V-(I_a1*R_a);//in volts
+E_2=N_2*E_1/N_1;//in volts
+R_A=-(E_2-V+I_a1*R_a)/20;
+disp(R_A,'Additional resistance(in ohms)=');
\ No newline at end of file diff --git a/695/CH2/EX2.28/R2_28.txt b/695/CH2/EX2.28/R2_28.txt new file mode 100755 index 000000000..f306505a5 --- /dev/null +++ b/695/CH2/EX2.28/R2_28.txt @@ -0,0 +1,3 @@ + (b) Additional resistance(in ohms)=
+
+ 3.815
\ No newline at end of file |