summaryrefslogtreecommitdiff
path: root/3850/CH32/EX32.5/Ex32_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH32/EX32.5/Ex32_5.sce')
-rw-r--r--3850/CH32/EX32.5/Ex32_5.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3850/CH32/EX32.5/Ex32_5.sce b/3850/CH32/EX32.5/Ex32_5.sce
new file mode 100644
index 000000000..f9da5dc55
--- /dev/null
+++ b/3850/CH32/EX32.5/Ex32_5.sce
@@ -0,0 +1,24 @@
+
+//To Calculate the Potential Difference and Thermal Energy
+
+//Example 32.5
+
+clear;
+
+clc;
+
+V=2.0;//Emf of battery in Volts
+
+i=0.100;//Current in Amperes
+
+r=0.50;//Resistance in ohms
+
+Vab=V-i*r;//Potential difference across the terminals
+
+printf("(a) Potential difference across the terminals= %f V",Vab);
+
+t=10;//Time in seconds
+
+U=i^2*r*t;//Formula for finding the thermal energy developed in the battery
+
+printf("\n(b) Thermal energy developed in the battery is= %.2f J",U);