diff options
Diffstat (limited to '3648/CH16/EX16.1/Ex16_1.sce')
-rw-r--r-- | 3648/CH16/EX16.1/Ex16_1.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3648/CH16/EX16.1/Ex16_1.sce b/3648/CH16/EX16.1/Ex16_1.sce new file mode 100644 index 000000000..bf1cfa810 --- /dev/null +++ b/3648/CH16/EX16.1/Ex16_1.sce @@ -0,0 +1,8 @@ +//Example 16_1
+clc();
+clear;
+//To find the magnitude of the electric field
+v=12 //Units in V
+d=5*10^-3 //units in Meters
+e=v/d //Units in V/meter
+printf("The magnitude of electric field is E=%d V/meters",e)
|