diff options
Diffstat (limited to '3257/CH10/EX10.7')
-rwxr-xr-x | 3257/CH10/EX10.7/Ex10_7.sce | 12 | ||||
-rwxr-xr-x | 3257/CH10/EX10.7/Ex10_7.txt | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/3257/CH10/EX10.7/Ex10_7.sce b/3257/CH10/EX10.7/Ex10_7.sce new file mode 100755 index 000000000..42ee1398e --- /dev/null +++ b/3257/CH10/EX10.7/Ex10_7.sce @@ -0,0 +1,12 @@ +// Injection molding of gears
+clc
+D = 110 // diameter in mm
+p = 100 // pressure on mould cavity in MPa
+C = 980 // capacity of machine in KN
+printf("\n Example 10.7")
+A = %pi*D^2/4
+f = A*1e-6*p*1e6/1e3 // required force in kN
+k = floor(C/f)
+
+printf("\n Mould can support the production of %d gear per cycle.",k)
+
diff --git a/3257/CH10/EX10.7/Ex10_7.txt b/3257/CH10/EX10.7/Ex10_7.txt new file mode 100755 index 000000000..af8d2cc5f --- /dev/null +++ b/3257/CH10/EX10.7/Ex10_7.txt @@ -0,0 +1,3 @@ +
+ Example 10.7
+ Mould can support the production of 1 gear per cycle.
\ No newline at end of file |