diff options
Diffstat (limited to '3835/CH6/EX6.1/Ex6_1.sce')
-rw-r--r-- | 3835/CH6/EX6.1/Ex6_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3835/CH6/EX6.1/Ex6_1.sce b/3835/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..97629a093 --- /dev/null +++ b/3835/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,16 @@ +clear +// +//given +a=50*(10**-4) +e=400 +f=50 +n1=500 +n2=1000 +//phym=bm*a +//case a +//e=4.44*f*n*bm*a +bm=(e)/(4.44*f*n1*a) +printf("\n bm= %0.1f Wb/m2",bm) +//case b +e2=4.44*f*n2*bm*a +printf("\n e2= %0.1f V",e2) |