hi i am trying to simulate a wire drawing process, i want to Pack (using combiner) one order with the corresponding "N_bobbins" from the orders table then unpack bobbins one by one with process time calculated from the table
Variant N_wires_row = /**\nRow: *//***tag:row*//**/item.Order/**/; Variant N_wires_col = /**\nColumn: *//***tag:col*//**/1/**/; Variant D_wires_row = /**\nRow: *//***tag:row*//**/item.Order/**/; Variant D_wires_col = /**\nColumn: *//***tag:col*//**/2/**/; Variant Length_Bobbin_row = /**\nRow: *//***tag:row*//**/item.Order/**/; Variant Length_Bobbin_col = /**\nColumn: *//***tag:col*//**/4/**/; double result = ( table[N_wires_row][N_wires_col] * table[Length_Bobbin_row][Length_Bobbin_col] * ((8/table[D_wires_row][D_wires_col])^2) ) / 5 ; return result;
but it doesn't seem to work properly.
also the combiner doesn't update as intended
Drawing.fsm