summaryrefslogtreecommitdiff
path: root/1199/CH3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1199/CH3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1199/CH3')
-rwxr-xr-x1199/CH3/EX3.1/3_1.sci27
-rwxr-xr-x1199/CH3/EX3.2/3_2.sci18
-rwxr-xr-x1199/CH3/EX3.3/3_3.sci12
-rwxr-xr-x1199/CH3/EX3.4/3_4.sci9
-rwxr-xr-x1199/CH3/EX3.5/3_5.sci11
-rwxr-xr-x1199/CH3/EX3.6/3_6.sci16
6 files changed, 93 insertions, 0 deletions
diff --git a/1199/CH3/EX3.1/3_1.sci b/1199/CH3/EX3.1/3_1.sci
new file mode 100755
index 000000000..e74e92ed7
--- /dev/null
+++ b/1199/CH3/EX3.1/3_1.sci
@@ -0,0 +1,27 @@
+// 3.1
+clc;
+Aou=700*25*1/100;
+Aol=100*25*1/100;
+AouPtP= 2*Aou;
+AolPtP= 2*Aol;
+Se1=1;
+D1=AouPtP/Se1;
+printf("\ndeflection of screen corresponding to maximum pressure for sensitivity of 1mV/mm =%.1f mm",D1)
+disp('sinch the length of the screen is 100mm so waveform is out of range and hence sensitivity setting of 1mV/mm should not be used')
+Se2=5;
+D2=AouPtP/Se2;
+printf("\ndeflection of screen corresponding to maximum pressure for sensitivity of 5mV/mm =%.1f mm",D2)
+disp('delection is within the range')
+Se3=20;
+D3=AouPtP/Se3;
+printf("\ndeflection of screen corresponding to maximum pressure for sensitivity of 20mV/mm =%.1f mm",D3)
+disp('delection is within the range')
+Se4=100;
+D4=AouPtP/Se4;
+printf("\ndeflection of screen corresponding to maximum pressure for sensitivity of 10mV/mm =%.1f mm",D4)
+disp('delection is within the range')
+Se5=500;
+D5=AouPtP/Se5;
+printf("\ndeflection of screen corresponding to maximum pressure for sensitivity of 500mV/mm =%.1f mm",D5)
+disp('delection is within the range')
+disp('since the sensitivity of 5mV/mm gives higher deflection so it is the optimum sensitivity') \ No newline at end of file
diff --git a/1199/CH3/EX3.2/3_2.sci b/1199/CH3/EX3.2/3_2.sci
new file mode 100755
index 000000000..7b9798294
--- /dev/null
+++ b/1199/CH3/EX3.2/3_2.sci
@@ -0,0 +1,18 @@
+//3.2
+clc;
+tA=1;
+tB=1;
+m=tA/tB;
+EB=147;
+EA=216;
+T2=200;
+T1=25;
+n=EB/EA;
+T=T2-T1;
+A=12.5*10^-6;
+B=1.7*10^-6;
+a=3*(1+m)^2;
+b=(1+m*n)*((m^2)+1/(m*n));
+c= (6*(A-B)*T*(1+m)^2);
+r=(a+b)/c;
+printf("\nRadius of curvature =%.2f mm",r)
diff --git a/1199/CH3/EX3.3/3_3.sci b/1199/CH3/EX3.3/3_3.sci
new file mode 100755
index 000000000..16b04b110
--- /dev/null
+++ b/1199/CH3/EX3.3/3_3.sci
@@ -0,0 +1,12 @@
+//3.3
+clc;
+t=2;
+T2=180;
+T1=20;
+T=T2-T1;
+A=12.5*10^-6;
+r=t/(2*T*A);
+printf("\nRadius of curvature =%.0f mm",r)
+Th=40/500;
+y=r*(1-cos(Th));
+printf("\nvertical displacement =%.0f mm",y)
diff --git a/1199/CH3/EX3.4/3_4.sci b/1199/CH3/EX3.4/3_4.sci
new file mode 100755
index 000000000..3b333690a
--- /dev/null
+++ b/1199/CH3/EX3.4/3_4.sci
@@ -0,0 +1,9 @@
+//3.4
+clc;
+Ta=1480+273;
+Tf=0.8;
+T=Tf^-0.25*Ta;
+printf("\nTrue temperature =%.2f degree K",T)
+Tc=T-273;
+printf("\nTrue temperature =%.2f degree C",Tc)
+
diff --git a/1199/CH3/EX3.5/3_5.sci b/1199/CH3/EX3.5/3_5.sci
new file mode 100755
index 000000000..39a46d9f2
--- /dev/null
+++ b/1199/CH3/EX3.5/3_5.sci
@@ -0,0 +1,11 @@
+// 3.5
+clc;
+ATC1=1065;
+AT=ATC1+273;
+Em1=0.82;
+Ta=(Em1^(-0.25))*AT;
+Em2=0.75;
+Taa=(Em2^-0.25)*Ta;
+ATC2=Taa-273;
+E=ATC1-ATC2;
+printf("Error in temperature measurement=%.2f degree C",E)
diff --git a/1199/CH3/EX3.6/3_6.sci b/1199/CH3/EX3.6/3_6.sci
new file mode 100755
index 000000000..0ae442952
--- /dev/null
+++ b/1199/CH3/EX3.6/3_6.sci
@@ -0,0 +1,16 @@
+// 3.6
+clc;
+EL=0.1;
+Zo=250*10^3;
+ZL=2.5*10^6;
+Eo=EL*(1+(Zo/ZL));
+B=0.1;
+l=50*10^-3;
+G=1000;
+v=Eo/(B*l*G);
+printf("Average flow rate=%.2f degree m/s",v)
+Zon=1.2*250*10^3;
+ELn=2*Eo/(1+(Zon/ZL));
+PDV=[(0.2-ELn)/0.2]*100;
+printf("Percentage decrease in voltage=%.2f degree m/s",PDV)
+