summaryrefslogtreecommitdiff
path: root/3523/CH4/EX4.10.12/Ex4_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3523/CH4/EX4.10.12/Ex4_12.sce')
-rw-r--r--3523/CH4/EX4.10.12/Ex4_12.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3523/CH4/EX4.10.12/Ex4_12.sce b/3523/CH4/EX4.10.12/Ex4_12.sce
new file mode 100644
index 000000000..fc8682536
--- /dev/null
+++ b/3523/CH4/EX4.10.12/Ex4_12.sce
@@ -0,0 +1,16 @@
+//Example 12// Ch 4
+clc;
+clear;
+close;
+// given data
+V = 200;//alternating voltage in kV(rms)
+x = 0.1;//uniform gap in meters
+f = 50;//frequency of voltage in Hz
+k = 1.4*10^-4;//mobility of positive ions in m2/s.V
+Ea = V*sqrt(2)*10^3/x;//alternating field in V/m
+printf("alternating field %e V/m",Ea)
+w = k*Ea/(2*%pi*f);
+t = sinm(x/w)/314;
+printf("travel time of positive ions from one electrode to other %f sec",t)
+fmax = k*Ea/(2*%pi*x)
+printf("maximum frequency that can be applied %f Hz",fmax)