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 /269/CH1 | |
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 '269/CH1')
-rw-r--r-- | 269/CH1/EX1.1/ex.jpeg | bin | 0 -> 19992 bytes | |||
-rw-r--r-- | 269/CH1/EX1.1/ex.sce | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/269/CH1/EX1.1/ex.jpeg b/269/CH1/EX1.1/ex.jpeg Binary files differnew file mode 100644 index 000000000..73d76e958 --- /dev/null +++ b/269/CH1/EX1.1/ex.jpeg diff --git a/269/CH1/EX1.1/ex.sce b/269/CH1/EX1.1/ex.sce new file mode 100644 index 000000000..2d6cdd030 --- /dev/null +++ b/269/CH1/EX1.1/ex.sce @@ -0,0 +1,21 @@ +disp("example1.1")
+printf("\n")
+disp("given")
+printf("\n")
+disp("C=C0(1-coswt)")
+disp("angular frequency=500rad/sec")
+w=500;
+t=0:0.001:0.015
+disp("initial capacitance=1 micro farad")
+disp("i=d(CV)/dt")
+disp("supply voltage=3V")
+C0=1*(10^-6)
+C=C0*(1-cos(w*t))
+V=3;
+i= w*C0*V*sin(w*t)//differentiating CV wrt t ,V is constant, i=d(CV)/dt
+subplot(221)
+plot(t,i)
+xtitle('i vs t','t','i')
+subplot(222)
+plot(t,C)//variation of capacitance with time
+xtitle('C vs t','t','C')
\ No newline at end of file |