diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3835/CH4/EX4.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3835/CH4/EX4.1')
-rw-r--r-- | 3835/CH4/EX4.1/Ex4_1.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3835/CH4/EX4.1/Ex4_1.sce b/3835/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..88ea9a08f --- /dev/null +++ b/3835/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,22 @@ +clear +// +//given +b=0.2 +a=0.04 +n=1000/(60) //rev/sec +t=500 +//case a +//since coil is at right angles ang=0 +printf("\n e(t)=0 V") +//case b +//when coil is 30deg to the field ang=60 +//p=sin(60) +p=0.8660254 +e=2*3.14*a*n*b*t*p +printf("\n e(t)= %0.1f V",e) +//case c +//when ang=90 that is coil is in the plane of the field +//p=sin(90) +p=1 +e=2*3.14*b*a*n*p*t +printf("\n e(t)= %0.1f V",e) |