summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.47/Ex2_47.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /695/CH2/EX2.47/Ex2_47.sce
downloadScilab-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/Ex2_47.sce')
-rwxr-xr-x695/CH2/EX2.47/Ex2_47.sce13
1 files changed, 13 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