diff options
Diffstat (limited to '3775/CH4/EX4.5')
-rw-r--r-- | 3775/CH4/EX4.5/Ex4_5.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3775/CH4/EX4.5/Ex4_5.sce b/3775/CH4/EX4.5/Ex4_5.sce new file mode 100644 index 000000000..2ef30291f --- /dev/null +++ b/3775/CH4/EX4.5/Ex4_5.sce @@ -0,0 +1,20 @@ +//Ex 4.5 page 160 + +clc; +clear; +close; + + +R=10;// ohm +Vs=230;// V +f=50;// Hz +fi = 45;// degree + +Vmax=Vs;// V(max supply voltage) +XL=R*tan(fi*%pi/180);// ohm +Z=XL*sqrt(2);// ohm +Imax=Vs/Z;//A + +printf('\n max load voltage = %.2f V', Vmax) +printf('\n max load current = %.3f A', Imax) +printf('\n range of delay angle = %d to %d',0,fi) |