diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1370/CH9/EX9.18/example9_18.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1370/CH9/EX9.18/example9_18.sce')
-rwxr-xr-x | 1370/CH9/EX9.18/example9_18.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1370/CH9/EX9.18/example9_18.sce b/1370/CH9/EX9.18/example9_18.sce new file mode 100755 index 000000000..2fe6206c1 --- /dev/null +++ b/1370/CH9/EX9.18/example9_18.sce @@ -0,0 +1,10 @@ +//example9.18
+clc
+disp("l=2 cm, d=5 mm, L=30 cm, V_a=2000 V, D=3 cm")
+disp("D=(l*L*V_d)/(2*d*V_a)")
+disp("i.e. (3*10^-2)=((2*10^-2)*(30*10^-2)*(V_d))/((2*5*10^-3)*2000)")
+v=((3*10^-2)*(2*5*10^-3)*2000)/((2*10^-2)*(30*10^-2))
+disp(v,"Therefore, V_d(in V)=")
+disp("But it is applied through amplifier of gain 100")
+g=100/100
+disp(g,"Therefore, Input voltage required = (V_d)/gain = 100/100 =")
|