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 /2252/CH6/EX6.13 | |
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 '2252/CH6/EX6.13')
-rwxr-xr-x | 2252/CH6/EX6.13/Ex6_13.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2252/CH6/EX6.13/Ex6_13.sce b/2252/CH6/EX6.13/Ex6_13.sce new file mode 100755 index 000000000..91df96886 --- /dev/null +++ b/2252/CH6/EX6.13/Ex6_13.sce @@ -0,0 +1,23 @@ +
+V=230//applied voltage
+L=60D-3//inductance of coil
+f=50 //frequency of supply
+Xl=2*%pi*f*L
+I=230/Xl
+//if frequency is reduced to 20 Hz
+Xl=2*%pi*20*L
+I1=V/Xl
+mprintf("Current through the coil if frequency is reduced to 20 Hz=%f A\n",I1)
+//if frequency is increased to 60 Hz
+Xl=2*%pi*60*L
+I2=V/Xl
+mprintf("Current through the coil if frequency is increased to 60 Hz=%f A\n",I2)
+//if frequency is increased to 100 Hz
+Xl=2*%pi*100*L
+I3=V/Xl
+mprintf("Current through the coil if frequency is increased to 100 Hz=%f A\n",I3)
+
+
+
+
+
|