Compare commits

...

4 Commits

Author SHA1 Message Date
andrea.villa 29be1a3fbb Piccola modifica a VICE_MINH 2024-02-14 10:07:04 +01:00
andrea.villa 04d9be7025 Merge branch 'develop' 2024-01-23 11:24:12 +01:00
andrea.villa f253f8366e Allineamento con common ver 2.6a3 2024-01-23 11:23:54 +01:00
andrea.villa e84aa95b73 Merge branch 'master' into develop 2024-01-22 10:44:03 +01:00
5 changed files with 16 additions and 12 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ local BeamData = {
DIM_STRIP_SMALL = 2.5, -- dimensione codolo piccolo (quando le parti sostenute sono sicuramente sulla parte sopra del pezzo)
RAWCOL = { 255, 160, 32, 30}, -- colore del grezzo
RAW_OFFSET = 2000, -- spostamento grezzo rimanente dopo split
VICE_MINH = 110, -- altezza minima della morsa
VICE_MINH = 1000, -- altezza minima della morsa
OFFSET_DRILL_TENON = 0, -- offset fori su tenoni verso base degli stessi (0=non fare)
USER_HOLE_DIAM = 0, -- diametro foro per L20
MAX_TOOL_LEN_FOR_HOR_MACH = 500, -- massima lunghezza ingombro per poter fare forature (fresature) oltre i 10 gradi dalla verticale
+6 -6
View File
@@ -2033,8 +2033,8 @@ function PreparePreRotation( sCmd, nInd)
MDChar = { [Cmd[2]]=tonumber(Cmd[3]), IniStatY1=EMT.ISY1, FinStatY1=EMT.FSY1, IniStatY2=EMT.ISY2, FinStatY2=EMT.FSY2, BeamVise=EMT.BV}
end
if EMT.ROLL_IN then
MDChar.V1 = MinV1 ; EMT.V1POS = MDChar.V1
MDChar.V2 = MaxV2 ; EMT.V2POS = MDChar.V2
MDChar.V1 = MinV1 ; EMT.V1NEXTPOS = MDChar.V1
MDChar.V2 = MaxV2 ; EMT.V2NEXTPOS = MDChar.V2
EMT.ROLL_IN = nil
end
table.insert( EMT.MDCHAR, MDChar)
@@ -2044,8 +2044,8 @@ function PreparePreRotation( sCmd, nInd)
if Cmd[2] ~= 'T' then MDChar[Cmd[2]] = tonumber( Cmd[3]) end
if Cmd[4] ~= 'T' then MDChar[Cmd[4]] = tonumber( Cmd[5]) end
if EMT.ROLL_IN then
MDChar.V1 = MinV1 ; EMT.V1POS = MDChar.V1
MDChar.V2 = MaxV2 ; EMT.V2POS = MDChar.V2
MDChar.V1 = MinV1 ; EMT.V1NEXTPOS = MDChar.V1
MDChar.V2 = MaxV2 ; EMT.V2NEXTPOS = MDChar.V2
EMT.ROLL_IN = nil
end
table.insert( EMT.MDCHAR, MDChar)
@@ -2055,8 +2055,8 @@ function PreparePreRotation( sCmd, nInd)
if Cmd[4] ~= 'T' then MDChar[Cmd[4]] = tonumber( Cmd[5]) end
if Cmd[6] ~= 'T' then MDChar[Cmd[6]] = tonumber( Cmd[7]) end
if EMT.ROLL_IN then
MDChar.V1 = MinV1 ; EMT.V1POS = MDChar.V1
MDChar.V2 = MaxV2 ; EMT.V2POS = MDChar.V2
MDChar.V1 = MinV1 ; EMT.V1NEXTPOS = MDChar.V1
MDChar.V2 = MaxV2 ; EMT.V2NEXTPOS = MDChar.V2
EMT.ROLL_IN = nil
end
table.insert( EMT.MDCHAR, MDChar)
+4 -3
View File
@@ -1,4 +1,4 @@
-- Descrizione macchina Essetre-PF by EgalTech s.r.l. 2024/01/22
-- Descrizione macchina Essetre-PF by EgalTech s.r.l. 2024/01/23
-- 2021/10/01 ver 2.3j1 Prima versione.
-- 2021/10/26 ver 2.3j2 Versione provvisoria per pezzo alto.
-- 2021/10/26 ver 2.3j3 Aggiunto arresto preciso negli angoli (G9) in fresature con utensili di piccolo diametro.
@@ -49,12 +49,14 @@
-- 2023/11/15 ver 2.5k1 In BeamData distanza sicurezza tagli CUT_SIC portata a 30.
-- 2023/12/05 ver 2.6a1 Prima versione con utilizzo post-processore standard per macchine ONE e PF
-- 2024/01/22 ver 2.6a2 Allineamento con common ver 2.6a2
-- 2024/01/23 ver 2.6a3 Allineamento con common ver 2.6a3
-- In BeamData, parametro VICE_MINH portato a 1000
-- Intestazioni
require( 'EmtGenerator')
EgtEnableDebug( false)
PP_VER = '2.6a2'
PP_VER = '2.6a3'
MIN_MACH_VER = '2.5k1'
local sBaseDir = EgtGetSourceDir()
@@ -175,7 +177,6 @@ Head2Z = DeltaTabZ - Delta2TabZ
DefTcPos1 = 'T3'
DefTcPos2 = 'T13'
SecondSaw = false
Mortiser = false
AutomaticRotation = true
AutoRotMinLen = 0
CoeffVM = 0.5
+4 -1
View File
@@ -12,4 +12,7 @@ Versione 2.6a1 (28/11/2023)
- (GEN) Corretto movimento in caso di testa 1 su TC-2. Utilizzava le quote della testa 2 anziché della 1.
Versione 2.6a2 (09/01/2024)
- Nuova versione. Prima versione stabile rilasciabile.
- Nuova versione. Prima versione stabile rilasciabile.
Versione 2.6a3 (23/01/2024)
- (GEN) Corretto gestione del movimento precedente all'ultimo che manda il pezzo alla posizione di scarico
+1 -1
View File
@@ -3,7 +3,7 @@
local InfoCommon_STD_PP = {
NAME = 'Common_ONE-PF', -- nome script PP standard
VERSION = '2.6a2', -- versione script
VERSION = '2.6a3', -- versione script
MIN_MACH_VER_PP_COMMON = '2.5k1' -- versione minima kernel
}