diff options
Diffstat (limited to '1730/CH6/EX6.4/Exa6_4.sce')
-rwxr-xr-x | 1730/CH6/EX6.4/Exa6_4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1730/CH6/EX6.4/Exa6_4.sce b/1730/CH6/EX6.4/Exa6_4.sce new file mode 100755 index 000000000..1ed59b36e --- /dev/null +++ b/1730/CH6/EX6.4/Exa6_4.sce @@ -0,0 +1,19 @@ +//Exa 6.4
+clc;
+clear;
+close;
+// given data
+g=12*10^-3;// in V-m/N
+t=1.25*10^-3;// in m
+A=5*5*10^-6;// in m^2
+F=3;// in N
+ChargeSensitivity=150*10^-12;// in C/N
+P=F/A;
+V_out=g*t*P;// in V
+Q=ChargeSensitivity*F;
+disp("Total charge developed is : "+string(Q)+" C");
+// Formula C=Q/V;
+C=Q/V_out;
+disp("Capacitance is : "+string(C*10^12)+" miu miu F");
+
+// Note: Answer in the Book is wrong
\ No newline at end of file |