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.47 | |
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.47')
-rwxr-xr-x | 695/CH2/EX2.47/Ex2_47.sce | 13 | ||||
-rwxr-xr-x | 695/CH2/EX2.47/Ex2_47.txt | 13 | ||||
-rwxr-xr-x | 695/CH2/EX2.47/R2_47.txt | 5 |
3 files changed, 31 insertions, 0 deletions
diff --git a/695/CH2/EX2.47/Ex2_47.sce b/695/CH2/EX2.47/Ex2_47.sce new file mode 100755 index 000000000..fd6cd8773 --- /dev/null +++ b/695/CH2/EX2.47/Ex2_47.sce @@ -0,0 +1,13 @@ +//Caption:Find the new speed as a percentage of the original speed
+//Exa:2.47
+clc;
+clear;
+close;
+V=400;//in volts
+R_f=200;//in ohms
+I_1=25;//in amperes
+I_f=V/R_f;
+I_a1=I_1-I_f;
+x=(-V+sqrt(V^2+4*345*400))/(2*345);
+disp(x*100,'New Speed is= ');
+disp('percent of original speed')
\ No newline at end of file diff --git a/695/CH2/EX2.47/Ex2_47.txt b/695/CH2/EX2.47/Ex2_47.txt new file mode 100755 index 000000000..fd6cd8773 --- /dev/null +++ b/695/CH2/EX2.47/Ex2_47.txt @@ -0,0 +1,13 @@ +//Caption:Find the new speed as a percentage of the original speed
+//Exa:2.47
+clc;
+clear;
+close;
+V=400;//in volts
+R_f=200;//in ohms
+I_1=25;//in amperes
+I_f=V/R_f;
+I_a1=I_1-I_f;
+x=(-V+sqrt(V^2+4*345*400))/(2*345);
+disp(x*100,'New Speed is= ');
+disp('percent of original speed')
\ No newline at end of file diff --git a/695/CH2/EX2.47/R2_47.txt b/695/CH2/EX2.47/R2_47.txt new file mode 100755 index 000000000..5e85fa907 --- /dev/null +++ b/695/CH2/EX2.47/R2_47.txt @@ -0,0 +1,5 @@ + New Speed is=
+
+ 64.318975
+
+ percent of original speed
\ No newline at end of file |