diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1646/CH12/EX12.9/Ch12Ex9.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1646/CH12/EX12.9/Ch12Ex9.sce')
-rwxr-xr-x | 1646/CH12/EX12.9/Ch12Ex9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1646/CH12/EX12.9/Ch12Ex9.sce b/1646/CH12/EX12.9/Ch12Ex9.sce new file mode 100755 index 000000000..644613b67 --- /dev/null +++ b/1646/CH12/EX12.9/Ch12Ex9.sce @@ -0,0 +1,11 @@ +// Scilab Code Ex12.9 : Page-607 (2011)
+clc; clear;
+n = 50;....// Total number of cycles per sec, Hz
+V = 1e-03;....// Volume of the specimen, metre cube
+t = 1;....// Time during which the loss occurs, s
+A = 0.25e+03;....// Area of B-H loop, joule per metre cube
+E = n*V*A*t; // Energy loss due to hysteresis, J/s
+printf("\nThe hystersis loss = %4.1f J/s", E);
+
+// Result
+// The hystersis loss = 12.5 J/s
|