diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3636/CH14/EX14.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3636/CH14/EX14.1')
-rw-r--r-- | 3636/CH14/EX14.1/Ex14_1.sce | 16 | ||||
-rw-r--r-- | 3636/CH14/EX14.1/Ex14_1.txt | 13 |
2 files changed, 29 insertions, 0 deletions
diff --git a/3636/CH14/EX14.1/Ex14_1.sce b/3636/CH14/EX14.1/Ex14_1.sce new file mode 100644 index 000000000..1455001b3 --- /dev/null +++ b/3636/CH14/EX14.1/Ex14_1.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+Vm=100 //voltage in V
+Rf=1*10^3 //resistance in series in ohm
+Rl=4*10^3 //load resistance in ohm
+
+//Calculation
+Im=Vm/(Rf+Rl)
+Idc=Im/%pi
+Irms=Im/2
+
+format("e",8)
+disp(Im,"(a)Maximum current Im is (A)= ")
+format("e",9)
+disp(Idc,"(b)dc component of current Idc is (A)=")
+disp(Irms,"(c)rms value of current Irms (A)= ")
diff --git a/3636/CH14/EX14.1/Ex14_1.txt b/3636/CH14/EX14.1/Ex14_1.txt new file mode 100644 index 000000000..08002ccd4 --- /dev/null +++ b/3636/CH14/EX14.1/Ex14_1.txt @@ -0,0 +1,13 @@ +
+ (a)Maximum current Im is (A)=
+
+ 2.0D-02
+
+ (b)dc component of current Idc is (A)=
+
+ 6.37D-03
+
+ (c)rms value of current Irms (A)=
+
+ 1.00D-02
+
\ No newline at end of file |