diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /746/CH5 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '746/CH5')
-rwxr-xr-x | 746/CH5/EX5.02/5_02.sce | 8 | ||||
-rwxr-xr-x | 746/CH5/EX5.07/5_07.sce | 15 | ||||
-rwxr-xr-x | 746/CH5/EX5.08/5_08.sce | 31 | ||||
-rwxr-xr-x | 746/CH5/EX5.09/5_09.sce | 8 |
4 files changed, 0 insertions, 62 deletions
diff --git a/746/CH5/EX5.02/5_02.sce b/746/CH5/EX5.02/5_02.sce deleted file mode 100755 index bbf900b84..000000000 --- a/746/CH5/EX5.02/5_02.sce +++ /dev/null @@ -1,8 +0,0 @@ -//Rate of change//
-pathname=get_absolute_file_path('5.02.sce')
-filename=pathname+filesep()+'5.02-data.sci'
-exec(filename)
-//Rate of change of density with time(in kg/m^3-s):
-r=-d*V/L
-printf("\n\nRESULTS\n\n")
-printf("\n\nRate of change of density with time: %.1f kg/m^3-s\n\n",r)
diff --git a/746/CH5/EX5.07/5_07.sce b/746/CH5/EX5.07/5_07.sce deleted file mode 100755 index 186042f6f..000000000 --- a/746/CH5/EX5.07/5_07.sce +++ /dev/null @@ -1,15 +0,0 @@ -//angular and rotation//
-pathname=get_absolute_file_path('5.07.sce')
-filename=pathname+filesep()+'5.07-data.sci'
-exec(filename)
-//At point b, u=3 mm/sec
-u=3;
-//Displacemet of b(in mm):
-xb=u*t
-//Rate of angular deformation(in s^-1):
-def=U/h
-//Rate of rotation(in s^-1):
-rot=-0.5*U/h
-printf("\n\nRSULTS\n\n")
-printf("\n\nRate of angular deformation: %.1f /sec\n\n",def)
-printf("\n\nRate of rotation: %.1f /sec\n\n",rot)
diff --git a/746/CH5/EX5.08/5_08.sce b/746/CH5/EX5.08/5_08.sce deleted file mode 100755 index f01cb0ced..000000000 --- a/746/CH5/EX5.08/5_08.sce +++ /dev/null @@ -1,31 +0,0 @@ -//Rates and area//
-pathname=get_absolute_file_path('5.08.sce')
-filename=pathname+filesep()+'5.08-data.sci'
-exec(filename)
-//Value of T:
-T=log(3/2)/A
-x0=1:2;
-y0=1:2;
-for i=1:2
- for j=1:2
- //For X coordinate:
- X(i)(j)=x0(i)*%e^(A*T)
- //For Y coordinate:
- Y(i)(j)=y0(j)*%e^(-A*T)
- end
-end
-plot(X,Y)
-//Rates of linear deformation in X direction:
-Ax=0.3;
-//Rate of linear deformation in the y direction:
-Ay=-0.3;
-//Rate of volume dilation(s^-1):
-v=A-A
-//Area of abcd:
-A1=1;
-//Area of a'b'c'd':
-A2=(3-3/2)*(4/3-2/3)
-printf("\n\nRESULTS\n\n")
-printf("\n\nRates of linear deformation in X and Y direction: %.1f /s , %.1f /s\n\n",Ax,Ay)
-printf("\n\nRate of volume dilation: %.0f /sec\n\n",v)
-printf("\n\nArea of abcd and a,b,c,d:%.1f m^2, %.1f m^\n\n",A1,A2)
diff --git a/746/CH5/EX5.09/5_09.sce b/746/CH5/EX5.09/5_09.sce deleted file mode 100755 index f13da2f7a..000000000 --- a/746/CH5/EX5.09/5_09.sce +++ /dev/null @@ -1,8 +0,0 @@ -//Volume flow rate//
-pathname=get_absolute_file_path('5.09.sce')
-filename=pathname+filesep()+'5.09-data.sci'
-exec(filename)
-//Volume flow rate(in m^3/sec):
-Q=d*g*sind(theta)*b*(h/1000)^3*1000/u/3
-printf("RESULTS")
-printf("\n\nVolume flow rate: %.4f m^3/sec\n\n",Q)
|