summaryrefslogtreecommitdiff
path: root/1730/CH6/EX6.2/Exa6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1730/CH6/EX6.2/Exa6_2.sce')
-rwxr-xr-x1730/CH6/EX6.2/Exa6_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1730/CH6/EX6.2/Exa6_2.sce b/1730/CH6/EX6.2/Exa6_2.sce
new file mode 100755
index 000000000..84d49011e
--- /dev/null
+++ b/1730/CH6/EX6.2/Exa6_2.sce
@@ -0,0 +1,16 @@
+//Exa 6.2
+clc;
+clear;
+close;
+// given data
+g=0.055;// in V-m/N
+t=2*10^-3;// in m
+P=1.25*10^6;// in N/m^2
+epsilon=40.6*10^-12;// in F/m
+V_out=g*t*P;
+disp("Output voltage is : "+string(V_out)+" V");
+// Formula Charge Sensivity=epsilon_o*epsilon_r*g=epsilon*g
+ChargeSensivity=epsilon*g;
+disp("Charge Sensivity is : "+string(ChargeSensivity)+" C/N");
+
+