summaryrefslogtreecommitdiff
path: root/1730/CH5/EX5.4
diff options
context:
space:
mode:
Diffstat (limited to '1730/CH5/EX5.4')
-rwxr-xr-x1730/CH5/EX5.4/Exa5_4.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1730/CH5/EX5.4/Exa5_4.sce b/1730/CH5/EX5.4/Exa5_4.sce
new file mode 100755
index 000000000..fe045d5d2
--- /dev/null
+++ b/1730/CH5/EX5.4/Exa5_4.sce
@@ -0,0 +1,12 @@
+//Exa 5.4
+clc;
+clear;
+close;
+// given data
+H_L_per_M_Cube_per_C=380;// in W-S
+f=50;// unit less
+density=7800;// in kg/m^3
+V=1/density;// in m^3
+// formula Hysteresis loss = Hysteresis loss/m^3/cycle * f * V
+P_h=H_L_per_M_Cube_per_C * f * V;
+disp("Hysteresis loss is : "+string(P_h)+" W");