DataBeam :

- aggiunto ricalcolo pezzi se cambiata configurazione macchina TS3
- nei tagli migliorato controllo direzione ingresso lama
- nei tagli longitudinali singoli corretto controllo elevazione con massimo affondamento utensile.
This commit is contained in:
Dario Sassi
2020-06-12 16:27:32 +00:00
parent 0d57d2be78
commit 5cd73a03a8
3 changed files with 18 additions and 10 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
-- ProcessLongCut.lua by Egaltech s.r.l. 2020/04/18
-- ProcessLongCut.lua by Egaltech s.r.l. 2020/06/11
-- Gestione calcolo taglio longitudinale per Travi
-- Tabella per definizione modulo
@@ -391,10 +391,10 @@ function ProcessLongCut.Make( Proc, nPhase, nRawId, nPartId)
-- imposto uso della faccia
EgtSetMachiningParam( MCH_MP.FACEUSE, nFaceUse)
-- verifico massimo affondamento rispetto ad elevazione
if dElev > dMaxDepth - BD.COLL_SIC then
sWarn = 'Warning in LongCut : depth (' .. EgtNumToString( dElev, 1) .. ') bigger than max tool depth (' .. EgtNumToString( dMaxDepth - BD.COLL_SIC, 1) .. ')'
if dElev > dMaxDepth + 10 * GEO.EPS_SMALL then
sWarn = 'Warning in LongCut : depth (' .. EgtNumToString( dElev, 1) .. ') bigger than max tool depth (' .. EgtNumToString( dMaxDepth, 1) .. ')'
end
local dDepth = min( 0, dMaxDepth - BD.COLL_SIC - dElev )
local dDepth = min( 0, dMaxDepth - dElev )
EgtSetMachiningParam( MCH_MP.DEPTH, dDepth)
-- eseguo
if not EgtApplyMachining( true, false) then