summaryrefslogtreecommitdiff
path: root/3836/CH13/EX13.3/Ex13_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3836/CH13/EX13.3/Ex13_3.sce')
-rw-r--r--3836/CH13/EX13.3/Ex13_3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3836/CH13/EX13.3/Ex13_3.sce b/3836/CH13/EX13.3/Ex13_3.sce
new file mode 100644
index 000000000..dfdfec23a
--- /dev/null
+++ b/3836/CH13/EX13.3/Ex13_3.sce
@@ -0,0 +1,11 @@
+clear
+//Initialization
+v=100 //voltage
+d=10**-5 //distance in meter
+
+//Calculation
+e=v*d**-1 //Electric Field Strength
+
+//Results
+printf("\n Electric Field Strength, E = %d ^7 V/m",round(e*10**-6))
+