summaryrefslogtreecommitdiff
path: root/3769/CH27/EX27.6/Ex27_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH27/EX27.6/Ex27_6.sce')
-rw-r--r--3769/CH27/EX27.6/Ex27_6.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3769/CH27/EX27.6/Ex27_6.sce b/3769/CH27/EX27.6/Ex27_6.sce
new file mode 100644
index 000000000..f6def42b0
--- /dev/null
+++ b/3769/CH27/EX27.6/Ex27_6.sce
@@ -0,0 +1,17 @@
+clear
+//Given
+rf=20 //ohm
+Rl=980
+V=50 //v
+
+//Calculation
+//
+Vm=V*sqrt(2)
+Im=(Vm/(rf+Rl))*10**3
+Idc=(2*Im)/(%pi)
+Irms=Im/sqrt(2)
+
+//Result
+printf("\n (i) load current is %0.1f mA",Im)
+printf("\n (ii) Mean load currant is %0.0f mA",Idc)
+printf("\n (iii) R.M.S value of load current is %0.3f mA",Irms)