diff options
Diffstat (limited to '3809/CH6/EX6.4')
-rw-r--r-- | 3809/CH6/EX6.4/EX6_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3809/CH6/EX6.4/EX6_4.sce b/3809/CH6/EX6.4/EX6_4.sce new file mode 100644 index 000000000..87c01644a --- /dev/null +++ b/3809/CH6/EX6.4/EX6_4.sce @@ -0,0 +1,14 @@ +//Chapter 6, Example 6.4 +clc +//Initialisation +w=25 //angular frequency +C=10*10**-3 //capacitance in farad +Ic=2 //current in ampere + +//Calculation + +Xc=1/(w*C) //Capacitive Reactance +Vc=Ic*Xc //voltage across capacitor + +//Results +printf("Voltage, V = %d V r.m.s",Vc) |