- in LongDoubleCut possibilità di scegliere lavorazione in discordanza. Al momento il parametro arriva da Q14 dalla LapJoint
This commit is contained in:
@@ -320,7 +320,7 @@ end
|
||||
|
||||
---------------------------------------------------------------------
|
||||
-- Applicazione della lavorazione
|
||||
function ProcessLong2Cut.Make( Proc, nPhase, nRawId, nPartId, bForcedBladeMaster, nUseSideToolMaster)
|
||||
function ProcessLong2Cut.Make( Proc, nPhase, nRawId, nPartId, bForcedBladeMaster, nUseSideToolMaster, nUseConventionalMilling)
|
||||
-- recupero l'ingombro del grezzo di appartenenza
|
||||
local b3Raw = EgtGetRawPartBBox( nRawId)
|
||||
local b3Solid = EgtGetBBoxGlob( EgtGetFirstNameInGroup( nPartId, 'Box') or GDB_ID.NULL, GDB_BB.STANDARD)
|
||||
@@ -1412,6 +1412,28 @@ function ProcessLong2Cut.Make( Proc, nPhase, nRawId, nPartId, bForcedBladeMaster
|
||||
-- imposto lato di lavoro e inversione
|
||||
EgtSetMachiningParam( MCH_MP.WORKSIDE, EgtIf( bIsMachDownUp, MCH_MILL_WS.RIGHT, MCH_MILL_WS.LEFT))
|
||||
EgtSetMachiningParam( MCH_MP.INVERT, EgtIf( bSide, true, false))
|
||||
|
||||
-- si aggiusta la direzione di lavoro in base a rotazione utensile e preferenza utente (nUseConventionalMilling da fuori o Q14)
|
||||
EgtMdbSetCurrMachining( sMilling)
|
||||
local bIsCurrentToolCCW = EgtMdbGetCurrMachiningParam( MCH_MP.SPEED) < 0
|
||||
if nUseConventionalMilling == nil then
|
||||
nUseConventionalMilling = EgtGetInfo( Proc.Id, 'Q14', 'd') or 0
|
||||
end
|
||||
local bUseConventionalMilling = false
|
||||
if nUseConventionalMilling == 1 or ( nUseConventionalMilling == 2 and vtN[vOrd[i]]:getX() < 0.1 and Proc.AffectedFaces.Bottom) then
|
||||
bUseConventionalMilling = true
|
||||
end
|
||||
if bIsCurrentToolCCW ~= bUseConventionalMilling then
|
||||
local dCurrStartAddLen = EgtGetMachiningParam( MCH_MP.STARTADDLEN)
|
||||
local dCurrEndAddLen = EgtGetMachiningParam( MCH_MP.ENDADDLEN)
|
||||
local bCurrInvert = EgtGetMachiningParam( MCH_MP.INVERT)
|
||||
local nCurrWorkside = EgtGetMachiningParam( MCH_MP.WORKSIDE)
|
||||
EgtSetMachiningParam( MCH_MP.STARTADDLEN, dCurrEndAddLen)
|
||||
EgtSetMachiningParam( MCH_MP.ENDADDLEN, dCurrStartAddLen)
|
||||
EgtSetMachiningParam( MCH_MP.INVERT, not bCurrInvert)
|
||||
EgtSetMachiningParam( MCH_MP.WORKSIDE, EgtIf( nCurrWorkside == MCH_MILL_WS.LEFT, MCH_MILL_WS.RIGHT, MCH_MILL_WS.LEFT))
|
||||
end
|
||||
|
||||
-- imposto offset radiale (nullo se concavo o di lato)
|
||||
local dOffsR = EgtIf( k < nO, ( nO - k) * dStep, EgtIf( bConvex, - BD.CUT_EXTRA, 0))
|
||||
if bSide then dOffsR = 0 end
|
||||
@@ -1867,6 +1889,28 @@ function ProcessLong2Cut.Make( Proc, nPhase, nRawId, nPartId, bForcedBladeMaster
|
||||
-- imposto lato di lavoro e inversione
|
||||
EgtSetMachiningParam( MCH_MP.WORKSIDE, EgtIf( bIsMachDownUp, MCH_MILL_WS.RIGHT, MCH_MILL_WS.LEFT))
|
||||
EgtSetMachiningParam( MCH_MP.INVERT, true)
|
||||
|
||||
-- si aggiusta la direzione di lavoro in base a rotazione utensile e preferenza utente (nUseConventionalMilling da fuori o Q14)
|
||||
EgtMdbSetCurrMachining( sMilling)
|
||||
local bIsCurrentToolCCW = EgtMdbGetCurrMachiningParam( MCH_MP.SPEED) < 0
|
||||
if nUseConventionalMilling == nil then
|
||||
nUseConventionalMilling = EgtGetInfo( Proc.Id, 'Q14', 'd') or 0
|
||||
end
|
||||
local bUseConventionalMilling = false
|
||||
if nUseConventionalMilling == 1 or ( nUseConventionalMilling == 2 and vtN[vOrd[i]]:getX() < 0.1 and Proc.AffectedFaces.Bottom) then
|
||||
bUseConventionalMilling = true
|
||||
end
|
||||
if bIsCurrentToolCCW ~= bUseConventionalMilling then
|
||||
local dCurrStartAddLen = EgtGetMachiningParam( MCH_MP.STARTADDLEN)
|
||||
local dCurrEndAddLen = EgtGetMachiningParam( MCH_MP.ENDADDLEN)
|
||||
local bCurrInvert = EgtGetMachiningParam( MCH_MP.INVERT)
|
||||
local nCurrWorkside = EgtGetMachiningParam( MCH_MP.WORKSIDE)
|
||||
EgtSetMachiningParam( MCH_MP.STARTADDLEN, dCurrEndAddLen)
|
||||
EgtSetMachiningParam( MCH_MP.ENDADDLEN, dCurrStartAddLen)
|
||||
EgtSetMachiningParam( MCH_MP.INVERT, not bCurrInvert)
|
||||
EgtSetMachiningParam( MCH_MP.WORKSIDE, EgtIf( nCurrWorkside == MCH_MILL_WS.LEFT, MCH_MILL_WS.RIGHT, MCH_MILL_WS.LEFT))
|
||||
end
|
||||
|
||||
-- calcolo la componente dNz non in base alla classificazione della feature (sopra, sotto, fianchi) ma alla componente maggiore
|
||||
-- local dNz = EgtIf( nSide == 0, vtN[vOrd[i]]:getY(), vtN[vOrd[i]]:getZ())
|
||||
-- local dNz = EgtIf( abs(vtN[vOrd[i]]:getY()) >= abs(vtN[vOrd[i]]:getZ()), vtN[vOrd[i]]:getY(), vtN[vOrd[i]]:getZ())
|
||||
|
||||
Reference in New Issue
Block a user