DataBeam :

- aggiunta gestione marcature e testi da sotto per macchine con testa da sotto
- aggiunta gestione smussi su profilatura caudata orizzontale per macchine con testa da sotto.
This commit is contained in:
DarioS
2021-05-03 20:40:21 +02:00
parent 4a4d95d437
commit a6dd7f69c8
4 changed files with 52 additions and 23 deletions
+13 -4
View File
@@ -1,6 +1,7 @@
-- ProcessMark.lua by Egaltech s.r.l. 2020/05/28
-- ProcessMark.lua by Egaltech s.r.l. 2021/05/03
-- Gestione calcolo marcatura per Travi
-- 2020/05/28 Tipo di lavorazione passato da Mark a Text
-- 2020/05/28 Tipo di lavorazione passato da Mark a Text.
-- 2021/05/03 Aggiunta gestione testa da sotto.
-- Tabella per definizione modulo
local ProcessMark = {}
@@ -59,13 +60,21 @@ function ProcessMark.Make( Proc, nPhase, nRawId, nPartId)
return false, sErr
end
-- verifico che la marcatura non sia orientata verso il basso (-5 deg)
if vtExtr:getZ() < - 0.1 then
if vtExtr:getZ() < - 0.1 and not BD.DOWN_HEAD then
local sErr = 'Error on process ' .. tostring( Proc.Id) .. ' Mark from bottom impossible'
EgtOutLog( sErr)
return false, sErr
end
-- abilitazione lavorazione da sotto
local bMillUp = ( BD.DOWN_HEAD and vtExtr:getZ() > -0.259)
local bMillDown = ( BD.DOWN_HEAD and vtExtr:getZ() < 0.174)
-- recupero la lavorazione
local sMilling = ML.FindMilling( 'Text')
local sMillType = 'Text'
local sMchExt = EgtIf( bMillDown, '_H2', '')
local sMilling = ML.FindMilling( sMillType..sMchExt)
if not sMilling and bMillUp then
sMilling = ML.FindMilling( sMillType)
end
if not sMilling then
local sErr = 'Error on process ' .. tostring( Proc.Id) .. ' milling not found in library'
EgtOutLog( sErr)