DataBeam :

- aggiunta gestione di SteoJoint e StepJointNotch
- modifiche varie.
This commit is contained in:
Dario Sassi
2019-09-25 18:33:48 +00:00
parent c8a4a2bb6e
commit e42f60cebe
13 changed files with 452 additions and 58 deletions
+5 -2
View File
@@ -1,4 +1,4 @@
-- ProcessLongCut.lua by Egaltech s.r.l. 2019/07/25
-- ProcessLongCut.lua by Egaltech s.r.l. 2019/09/25
-- Gestione calcolo taglio longitudinale per Travi
-- Tabella per definizione modulo
@@ -235,7 +235,10 @@ function ProcessLongCut.Make( Proc, nPhase, nRawId, nPartId)
-- imposto lato di lavoro e inversione
EgtSetMachiningParam( MCH_MP.WORKSIDE, MCH_MILL_WS.LEFT)
EgtSetMachiningParam( MCH_MP.INVERT, true)
local dDepth = min( dMaxDepth, dWidth + dAgg)
if dWidth + dAgg > dMaxDepth - BD.COLL_SIC then
sWarn = 'Warning in LongCut : depth (' .. EgtNumToString( dWidth + dAgg, 1) .. ') bigger than max tool depth (' .. EgtNumToString( dMaxDepth - BD.COLL_SIC, 1) .. ')'
end
local dDepth = min( dMaxDepth - BD.COLL_SIC, dWidth + dAgg)
EgtSetMachiningParam( MCH_MP.DEPTH, dDepth)
-- eseguo
if not EgtApplyMachining( true, false) then