...
Due to this fusing, it is actually unimportant how many models are placed in the building chamber; the only factor that should matter is the height of the tallest model, as it determines the overall number of layers.
Code Block |
---|
//Material variables let materialCost = 60; // euro/kg let singleLayerPrintTime density = 1.02; // g/cm^3 let margin = 155; // total price is multiplied with margin //Machine time variables let singleLayerPrintTime = 15; // sec let layerHeight = 0.2; // mm let machineRate = 50; // mmeuro/hour // Material cost calculation let material = model.volume * materialCost * density * 0.000001; // Don't change the following lines // Machine runtime cost calculation let numberOfLayers = model.h/layerHeight; let machineTime = singleLayerPrintTime * numberOfLayers/item.quantity; //Total price: material price plus machine runtime cost let price = margin * (material + machineTime * machineRate); price; |
CLIP Machine Time Formula
...