summaryrefslogtreecommitdiff
path: root/3831/CH8/EX8.14/Ex8_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '3831/CH8/EX8.14/Ex8_14.sce')
-rw-r--r--3831/CH8/EX8.14/Ex8_14.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3831/CH8/EX8.14/Ex8_14.sce b/3831/CH8/EX8.14/Ex8_14.sce
new file mode 100644
index 000000000..16d02a06f
--- /dev/null
+++ b/3831/CH8/EX8.14/Ex8_14.sce
@@ -0,0 +1,10 @@
+// Example 8_14
+clc;funcprot(0);
+// Given data
+T=30.0;// °C
+phi=5.00;// V
+I=10.0;// mA
+
+// Solution
+S_P_W=(phi*I*10^-3)/(T+273.15);// W/K
+printf("\nThe entropy production rate of the circuit board,(S_P)_W=%1.2e W/K",S_P_W);