Compare commits

...

9 Commits

Author SHA1 Message Date
luca.mazzoleni 55fde8526a Merge branch 'develop' 2024-02-09 17:22:13 +01:00
luca.mazzoleni ae7e96aa7c In BeamData aggiunta funzione GetBlockedAxis che sostituisce la GetChainSawBlockedAxis. 2024-02-09 17:21:49 +01:00
luca.mazzoleni 3db37e9c19 Merge branch 'master' into develop 2024-02-09 17:15:11 +01:00
Dario Sassi 86ca749635 Essetre-FAST 2.6a2 :
- aggiunti ingombri portautensili per mortase e seghe a catena.
2024-01-30 09:13:17 +01:00
Dario Sassi 19ae66b5bd Essetre-FAST 2.6a1 :
- piccola modifica per direzione preferenziale rinvio da sotto (per evitare di accedere dal lato della barra).
2024-01-19 09:01:44 +01:00
luca.mazzoleni 758893afdb Merge branch 'master' into develop 2023-12-15 10:50:11 +01:00
andrea.villa 3f2b2f3767 Merge branch 'develop' 2023-12-15 10:13:01 +01:00
andrea.villa 8934973545 2.5l2 : Migliorato calcolo stima tempi di lavorazione 2023-12-15 09:03:40 +01:00
andrea.villa 3b591b677a Merge branch 'master' into develop 2023-12-14 08:41:04 +01:00
5 changed files with 36 additions and 9 deletions
+23 -5
View File
@@ -115,14 +115,32 @@ if EgtExistsFile( sData) then
end
---------------------------------------------------------------------
local function GetChainSawBlockedAxis( nInd)
if nInd == 1 then
return 'A=90'
local function GetBlockedAxis( sHead, nToolType, sBlockedAxis)
-- lama
if nToolType == MCH_TY.SAW_STD or nToolType == MCH_TY.SAW_FLAT then
return ''
-- sega a catena
elseif nToolType == MCH_TY.MORTISE_STD then
if sHead == 'H3' then
if sBlockedAxis == 'parallel' then
return 'A=0'
elseif sBlockedAxis == 'perpendicular' then
return 'A=90'
end
else
return ''
end
-- fresa
elseif nToolType == MCH_TY.MILL_STD or nToolType == MCH_TY.MILL_NOTIP then
return ''
-- punta
elseif nToolType == MCH_TY.DRILL_STD or nToolType == MCH_TY.DRILL_LONG then
return ''
else
return 'A=0'
return ''
end
end
BeamData.GetChainSawBlockedAxis = GetChainSawBlockedAxis
BeamData.GetBlockedAxis = GetBlockedAxis
---------------------------------------------------------------------
local function GetMaxLenRidgeLapFromBottom( dHRaw)
+7 -3
View File
@@ -1,4 +1,4 @@
-- Descrizione macchina Essetre-FAST by EgalTech s.r.l. 2023/11/04
-- Descrizione macchina Essetre-FAST by EgalTech s.r.l. 2024/01/19
-- 2021/12/29 DS ver 2.3l4 Per NUM non va considerato MillOffs negli offset in Z.
-- 2022/01/27 DS ver 2.4a2 Modifiche per tagli testa/coda su pezzi alti.
-- 2022/02/10 DS ver 2.4a3 Ridotto di 10mm pinzaggio con pezzi alti ma sottili.
@@ -30,11 +30,15 @@
-- 2023/11/04 DS ver 2.5k1 Eliminata testa H4. Aggiunta visualizzazione rinvio su TC.Aggiunta gestione MIN_MACH_VER per simulazione e generazione.
-- 2023/12/13 AV ver.2.5l1 Piccola correzione per errore digitazione variabile in calcolo riposizionamento carrelli (SpecAdjustCarrB3)
-- Corretto segno di una variabile in calcolo posizionamento carrelli
-- 2023/12/15 AV ver.2.5l2 Migliorato calcolo stima tempi di lavorazione
-- 2024/01/19 DS ver 2.6a1 Piccola modifica per direzione preferenziale rinvio da sotto (per evitare di accedere dal lato della barra).
-- 2024/01/29 DS ver 2.6a2 In portautensili per mortasa e sega a catena aggiunti ingombri dello stesso.
-- 2024/02/09 LM ver 2.6b1 In BeamData aggiunta funzione GetBlockedAxis che sostituisce la GetChainSawBlockedAxis.
require( 'EmtGenerator')
EgtEnableDebug( false)
PP_VER = '2.5l1'
PP_VER = '2.6b1'
MIN_MACH_VER = '2.5k1'
-- Parametri macchina
@@ -291,7 +295,7 @@ if SecondSupport >= 3 then
EgtSetInfo( H5Id, 'AGB_DMAX', 240)
EgtSetInfo( H5Id, 'AGB_ENCH', 44)
EgtSetInfo( H5Id, 'AGB_ENCV', 380)
EgtSetInfo( H5Id, 'AGB_MDIR', -Y_AX())
EgtSetInfo( H5Id, 'AGB_MDIR', X_AX())
EgtSetInfo( H5Id, 'ZMAXONROT', '1,15')
end
-- Morse
+6 -1
View File
@@ -1233,6 +1233,7 @@ end
function OnEstimPathStart()
EMT.AUXTYPE = nil
EMT.MCHMOVEFIRST = true
EMT.CHARMOVE = nil
end
---------------------------------------------------------------------
@@ -1260,7 +1261,11 @@ function OnEstimPathStartAux()
end
-- altrimenti, spostamento carrelli
else
if EMT.AUXTOT > 2 and EMT.AUXIND == EMT.AUXTOT then
local Cmd = EgtSplitString( EMT.AUX)
if ( Cmd[1] == '1' and Cmd[2] ~= 'Z') or Cmd[1] == '2' or Cmd[1] == '3' then
EMT.CHARMOVE = true
end
if EMT.AUXIND == EMT.AUXTOT and EMT.CHARMOVE then
local dTime = ( EMT.AUXTOT - 2) * CHAR_ONE_MOVE_T
EMT.TOTEXTTIME = EMT.TOTEXTTIME + dTime
EmtTleAddMachining( 'Charriots move', EmtSecToHMS( dTime), ' - ', ' - ')
Binary file not shown.
Binary file not shown.