blob: 42ee1398eb225da251522f69ce3a5b6b51249cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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)
|