项目名称Item |
单位Unit |
J23-6.3 |
J23-10B |
J23-16B |
J23-25A |
J23-25 |
JC23-25 |
公称力
Nominal Pressure |
千牛kN |
63 |
100 |
160 |
250 |
250 |
250 |
公称力行程
Nominal Pressure Stroke |
毫米mm |
2 |
2 |
5 |
4 |
4 |
4 |
滑块行程
Slide Stroke |
毫米mm |
35 |
60 |
70 |
80 |
80 |
65 |
行程次数
No. of Strokes Per Minute |
次/分 SPM |
170 |
130 |
120 |
90 |
55 |
55 |
最大装模高度
Max. Die Height |
毫米mm |
120 |
130 |
160 |
210 |
210 |
220 |
装模高度调节量
Die Height Adjustment |
毫米mm |
30 |
35 |
60 |
55 |
55 |
55 |
喉深
Throat Depth |
毫米mm |
110 |
130 |
160 |
190 |
190 |
190 |
工作台板尺寸
Bolster Surface Size |
前后F.B. |
毫米mm |
200 |
240 |
300 |
360 |
360 |
370 |
左右L.R. |
毫米mm |
310 |
360 |
450 |
560 |
560 |
570 |
工作台孔尺寸
Bed Opening Size |
前后F.B. |
毫米mm |
110 |
100 |
110 |
190 |
190 |
200 |
左右L.R. |
毫米mm |
160 |
180 |
220 |
290 |
290 |
290 |
直径Dia. |
毫米mm |
140 |
130 |
160 |
260 |
260 |
260 |
滑块底面尺寸
Slide Surface Size |
前后F.B. |
毫米mm |
120 |
150 |
180 |
220 |
var MAX_WIDTH = document.body.clientWidth;
var eles = document.getElementById("detail").getElementsByTagName("img");
for (var i = 0; i < eles.length; i++) {
eles[i].onload = function() {
var image = new Image();
image.src = this.src;
if (image.width > 0 && image.height > 0) {
var image_rate = 1;
if (image.width > MAX_WIDTH) {
image_rate = MAX_WIDTH / image.width;
}
if (image_rate <= 1) {
this.width = image.width * image_rate*0.8;
this.height = image.height * image_rate*0.8;
}
}
}
}
|