diff options
Diffstat (limited to '3754/CH3/EX3.3/3_3.sce')
-rw-r--r-- | 3754/CH3/EX3.3/3_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH3/EX3.3/3_3.sce b/3754/CH3/EX3.3/3_3.sce new file mode 100644 index 000000000..d390f43ad --- /dev/null +++ b/3754/CH3/EX3.3/3_3.sce @@ -0,0 +1,15 @@ +clear//
+
+//Variables
+
+Q = 7.5 //Charge (in Coulomb)
+t = 0.5 //Time (in minute)
+
+//Calculation
+
+t = 0.5 * 60 //Time (in seconds)
+I= Q/t //Current (in Ampere)
+
+//Result
+
+printf("\n The current in the element is %0.3f A.",I)
|