// };
var DEV_INIT_VALUES = {
- 'max_feed_size': 300,
- 'separation_deck_1': 80,
- 'bulk_density': 1.7,
- 'importance_wear_protection': 4,
- 'importance_misplaced_particles': 4,
+ 'max_feed_size': 200,
+ 'separation_deck_1': 32,
+ 'bulk_density': 1.6,
+ 'importance_wear_protection': 3,
+ 'importance_misplaced_particles': 3,
'importance_available_height': 3,
- 'importance_tolc': 2,
- //'screen_type_choice': 'SL|Adjustability, screening efficiency, maintenance friendly, installation requires a low space in the height direction, less sensible for blinding (linear stroke, high g-force)|Horizontal or slightly inclined installation, always double mechanism arrangement, modular screening deck design, suitable for all mining and construction duty applications',
- // 'screen_type_choice': 'SJ|Widely used type, high capacity, less sensible for pegging (circular stroke)|Inclined screen, mainly one mech. Arrangement, modular desing, suitable for heavy duty quarry and medium duty mining applications',
- 'screen_type_choice': 'SA|Widely used type, low investment cost, less sensible for pegging (circular stroke)|Inclined screen, single mechanism arrangement, suitable for medium duty quarry applications, only side tensioned screening media arrangements applicable',
- 'decks': 2,
- 'feed_capacity': 800,
- 'separation_deck_2': 50,
- 'separation_deck_3': 0,
+ 'importance_tolc': 3, //'screen_type_choice': 'SL|Adjustability, screening efficiency, maintenance friendly, installation requires a low space in the height direction, less sensible for blinding (linear stroke, high g-force)|Horizontal or slightly inclined installation, always double mechanism arrangement, modular screening deck design, suitable for all mining and construction duty applications',
+ 'screen_type_choice': 'SJ|Widely used type, easily adaptable to varying conditions, low capex to performance ratio, less sensible for pegging (circular stroke)|Inclined screen, mainly single mechanism arrangement, modular screening deck design, suitable for heavy duty quarry and medium duty mining applications', //'screen_type_choice': 'SA|Widely used type, low investment cost, less sensible for pegging (circular stroke)|Inclined screen, single mechanism arrangement, suitable for medium duty quarry applications, only side tensioned screening media arrangements applicable',
+ 'decks': 3,
+ 'feed_capacity': 600,
+ 'separation_deck_2': 60,
+ 'separation_deck_3': 40,
'separation_deck_4': 0,
- 'pct_deck_1': 80,
- 'pct_deck_2': 40,
- 'pct_deck_3': 0,
+ 'pct_deck_1': 60,
+ 'pct_deck_2': 30,
+ 'pct_deck_3': 10,
'pct_deck_4': 0,
};
res += '</table>';
var decks = {
- 1: getTranslation('1st'),
- 2: getTranslation('2nd'),
- 3: getTranslation('3rd'),
- 4: getTranslation('4th')
+ 1: getTranslation('1st'), 2: getTranslation('2nd'), 3: getTranslation('3rd'), 4: getTranslation('4th')
};
res += '<div class="decks">';
return a[3] - b[3];
});
- console.log($AREA, filteredTable);
var mw = ($width_min * 1000);
var ERROR = false;
break;
}
var i = filteredTable.shift();
+
if (i[2] < mw) {
continue;
}
break;
}
- return {AREA: i[1], MEDIA: i[2], LARGE_ERROR: ($AREA > max), MODEL_ERROR: ERROR};
+
+ console.log(i);
+
+ let area = i[1];
+ let media = i[2];
+ if (i.length > 4) {
+ area = i[3];
+ media = i[4];
+ }
+ return {AREA: area, MEDIA: media, LARGE_ERROR: ($AREA > max), MODEL_ERROR: ERROR};
}
\ No newline at end of file