Compare commits

...

4 Commits

Author SHA1 Message Date
andrea.villa f223da1a1c Piccola modifica a VICE_MINH 2024-02-14 10:02:44 +01:00
andrea.villa bab2d2315d Merge branch 'develop' 2024-01-23 11:20:31 +01:00
andrea.villa 7256395366 Allineamento con common versione 2.6a3 2024-01-23 11:20:20 +01:00
andrea.villa a9a2183e3a Merge branch 'main' into develop 2024-01-12 11:18:32 +01:00
5 changed files with 17 additions and 10 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ local BeamData = {
DIM_STRIP_SMALL = 0.1, -- 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 = 14, -- 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 -1
View File
@@ -3,12 +3,15 @@
-- 2023/11/17 ver 2.5k2 Gestione Pinza5
-- 2023/11/30 ver 2.6a1 Prima versione con utilizzo post-processore standard per macchine ONE e PF
-- 2024/01/12 ver 2.6a2 Allineamento con common versione 2.6a2
-- 2024/01/23 ver 2.6a3 Allineamento con common versione 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()
+5 -1
View File
@@ -10,5 +10,9 @@ Versione 2.6a1 (28/11/2023)
- (GEN+SIM) Migliorata gestione riposizionamento pinze, in caso testa debba andare in home
- (GEN) Se a zeta massima con lama e utensile successivo diverso, mi sposto sempre verso X-HOME
- (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
}