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 /2297/CH3/EX3.3/Ex3_3.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 '2297/CH3/EX3.3/Ex3_3.sce')
-rwxr-xr-x | 2297/CH3/EX3.3/Ex3_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2297/CH3/EX3.3/Ex3_3.sce b/2297/CH3/EX3.3/Ex3_3.sce new file mode 100755 index 000000000..42a4c783d --- /dev/null +++ b/2297/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,16 @@ +// Example 3.3;hystresis loss per Kg +clc; +close; +clear; +// given : +format('v',7) +l=10;//lengh in mm +atm=200;//AT/m +a=4800;//area in m^2 +loss=atm*(l*10^-2)*(a/100);//loss in J/m^3/cycle +d=7.8*10^3;//kg/m^3 +vikg=1/d;//m^3 +loss1=loss*vikg;//J/cycle +f=50;//Hz +tl=loss1*f;//J/s +disp(tl,"hystersis loss is ,(W/kg)=") |