diff options
Diffstat (limited to '3835/CH4/EX4.1/Ex4_1.sce')
-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) |