summaryrefslogtreecommitdiff
path: root/698/CH26/EX26.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /698/CH26/EX26.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '698/CH26/EX26.6')
-rw-r--r--698/CH26/EX26.6/6_permissible_velocity.txt2
-rw-r--r--698/CH26/EX26.6/P6_permissible_velocity.sce23
2 files changed, 25 insertions, 0 deletions
diff --git a/698/CH26/EX26.6/6_permissible_velocity.txt b/698/CH26/EX26.6/6_permissible_velocity.txt
new file mode 100644
index 000000000..39a0bd076
--- /dev/null
+++ b/698/CH26/EX26.6/6_permissible_velocity.txt
@@ -0,0 +1,2 @@
+St=rho*v^2
+Neglecting bending in the rim, V=62.7 m/s \ No newline at end of file
diff --git a/698/CH26/EX26.6/P6_permissible_velocity.sce b/698/CH26/EX26.6/P6_permissible_velocity.sce
new file mode 100644
index 000000000..44911ee05
--- /dev/null
+++ b/698/CH26/EX26.6/P6_permissible_velocity.sce
@@ -0,0 +1,23 @@
+clc
+//Example 26.6
+//Permissible velocity
+
+//------------------------------------------------------------------------------
+
+//Given data
+St=27.5* 10^6
+rho=7000
+
+
+res6=mopen(TMPDIR+'6_permissible_velocity.txt','wt')
+mfprintf(res6,'St=rho*v^2\n')
+
+V=sqrt(St/rho)
+
+mfprintf(res6,'Neglecting bending in the rim, V=%0.1f m/s',V)
+
+
+mclose(res6)
+editor(TMPDIR+'6_permissible_velocity.txt')
+//------------------------------------------------------------------------------
+//-----------------------------End of program-----------------------------------