Пікірлер
@darcustaseen1602
@darcustaseen1602 10 күн бұрын
Thats slow. Looks like multiple g32 passes... Can this be done in fewer passes and improved speed? I would want this done on internal threads... Care to share your macro?
@CNCPL1
@CNCPL1 10 күн бұрын
Macro in description.
@darcustaseen1602
@darcustaseen1602 9 күн бұрын
@@CNCPL1 Thank you for this.
@darcustaseen1602
@darcustaseen1602 9 күн бұрын
@@CNCPL1 Can you take a look at a reworking of your macro to see if it does the same job? (THREAD CUTTING MACRO - EXTERNAL WITH CHIP BREAKING); (PARAMETRIC INPUTS); #200=24.0 (DIAMETER OF THREAD); #201=3.0 (PITCH); #202=0.35 (DEPTH OF CUT IN DIAMETER); #203=50.0 (LENGTH OF THREAD); #204=3 (NUMBER OF FINISH PASSES); #205=20.5 (TOTAL DEPTH OF CUT); #206=30.0 (THREAD ANGLE - USE 30 FOR METRIC, 27.5 FOR INCH); (CALCULATED PARAMETERS); #210=TAN[#206] (TANGENT OF THREAD ANGLE); #211=[#200-#202] (MINOR DIAMETER); #212=#200+#201*2 (CLEARANCE DIAMETER); #213=FUP[#203/[#201*5]] (NUMBER OF PASSES); #214=#210*[[#212-#211]/2] (THREAD HEIGHT); #215=4.0 (START POSITION IN Z); #216=#200-#205 (FINAL THREAD DIAMETER); #217=FIX[[#200-#216]/#202] (NUMBER OF ROUGHING PASSES); N1 G54; G18 G99; G0 T0303; G97 S500 M3; G0 X#212 Z#215; (ROUGHING PASSES WITH CHIP BREAKING); #220=1 (PASS COUNTER); N10 (START OF ROUGHING LOOP); #221=[#211+[#217-#220]*#202] (CURRENT DIAMETER); G32 W-[#201*3-#214*2] F#201; G32 X#221 W-#214; G32 W-#201*2; G32 X#212 W-#214; G0 X#212; G0 Z#215; #220=#220+1; IF [#220 LE #217] GOTO 10; (FINISHING PASSES); #230=1 (FINISH PASS COUNTER); N20 (START OF FINISHING LOOP); G0 X#212 Z#215; G32 W-[#201*3-#214*2] F#201; G32 X#216 W-#214; G32 W-[#213*5*#201]; G32 X#212 W-#214; G0 X#212; G0 Z#215; #230=#230+1; IF [#230 LE #204] GOTO 20; G0 Z100.; G0 G28 U0 W0; M30; %
@darcustaseen1602
@darcustaseen1602 9 күн бұрын
@@CNCPL1 I am planning on modifying it so it works with internal threads and then try it out on the machine. Unfortunately, I lack the software to backplot this. I'm really struggling with NCPlot at the moment!
@darcustaseen1602
@darcustaseen1602 9 күн бұрын
@@CNCPL1 Here is your macro, modified for my machine (it has an inverted x-axis) and for internal thread... thank you for doing all the hardwork: (INTERNAL THREAD CUTTING MACRO WITH WAVE MOTION - INVERTED X-AXIS); (PARAMETRIC INPUTS); #200=30.0 (BORE DIAMETER); #201=3.0 (PITCH); #202=0.35 (DEPTH OF CUT IN DIAMETER); #203=50.0 (LENGTH OF THREAD); #204=3.0 (NUMBER OF FINISH PASSES); #205=20.5 (TOTAL DEPTH OF CUT); #206=30.0 (THREAD ANGLE - USE 30.0 FOR METRIC, 27.5 FOR INCH); ; (CALCULATED PARAMETERS); #210=TAN[#206] (TANGENT OF THREAD ANGLE); #211=-[#200+#202] (MAJOR DIAMETER); #212=-[#200-#201*2] (CLEARANCE DIAMETER); #213=FUP[#203/[#201*5]] (NUMBER OF PASSES); #214=#210*[[ABS[#211]-ABS[#212]]/2] (THREAD HEIGHT); #215=-4.0 (START POSITION IN Z); #216=-[#200+#205] (FINAL THREAD DIAMETER); #217=FIX[[ABS[#216]-#200]/#202] (NUMBER OF ROUGHING PASSES); ; N1 G54; G18 G99; G0 T0303; G97 S500 M3; G0 X#212 Z#215; ; (ROUGHING PASSES WITH WAVE MOTION); #220=1.0 (PASS COUNTER); N10 (START OF ROUGHING LOOP); #221=[#211+[#220-1.0]*#202] (CURRENT DIAMETER); #222=#215 (CURRENT Z POSITION); WHILE [#222 GT [#215-#203]] DO; G32 X#221 W-[#201*3.0] F#201; G32 X[#221+0.1] W-0.2; G32 X#212 W-0.2; G0 X#212; #222=[#222-[#201*3.0+0.4]]; G0 Z#222; END; G0 Z#215; #220=#220+1.0; IF [#220 LE #217] GOTO 10; ; (FINISHING PASSES WITH WAVE MOTION); #230=1.0 (FINISH PASS COUNTER); N20 (START OF FINISHING LOOP); #222=#215 (RESET CURRENT Z POSITION); WHILE [#222 GT [#215-#203]] DO; G32 X#216 W-[#201*3.0] F#201; G32 X[#216+0.05] W-0.2; G32 X#212 W-0.2; G0 X#212; #222=[#222-[#201*3.0+0.4]]; G0 Z#222; END; G0 Z#215; #230=#230+1.0; IF [#230 LE #204] GOTO 20; G0 Z100.0; M30; %
@xCaptainKlutch97
@xCaptainKlutch97 23 күн бұрын
Could this macro be used to thread mill?
@CNCPL1
@CNCPL1 21 күн бұрын
Hi. I think that should be ok for tread milling.
@kw2519
@kw2519 27 күн бұрын
When you forget how to use offsets to make the bore larger haha
@kw2519
@kw2519 28 күн бұрын
Jesus Christ
@Warren-we8dn
@Warren-we8dn Ай бұрын
Podria dictar clases de cnc via oline?
@matthewbailey8588
@matthewbailey8588 Ай бұрын
Looks to me like you moved her in x while runnin the insert drill dude
@khaledbenamirouche3244
@khaledbenamirouche3244 Ай бұрын
I really want to learn these types of programming but i don't know where to start
@owenmcgrath3696
@owenmcgrath3696 Ай бұрын
For when you need a curved bore.
@iliandimitrov4857
@iliandimitrov4857 2 ай бұрын
Много благодаря за примерната макропрограма! ( Thanks a lot for the example! )
@whitewolf9547
@whitewolf9547 2 ай бұрын
Takisawa are the most slept on lathe on the market. You can get a TCY-200 sub spindle lathe with y axis for $130k
@---MarcosVanzuita---
@---MarcosVanzuita--- 2 ай бұрын
Show! 👏🇧🇷
@---MarcosVanzuita---
@---MarcosVanzuita--- 2 ай бұрын
for this type of program I use parameterized, where I can make one key or more than one......
@malappapujari6024
@malappapujari6024 2 ай бұрын
Can you please share tool details
@CNCPL1
@CNCPL1 2 ай бұрын
Garant 290354 6
@malappapujari6024
@malappapujari6024 2 ай бұрын
Can you please send tool details
@---MarcosVanzuita---
@---MarcosVanzuita--- 2 ай бұрын
Hello, congratulations on the video! Tell me, would you happen to have an example to make a square?
@CNCPL1
@CNCPL1 2 ай бұрын
In my other video theres is twisted Square. In comments there is code Just delete line G1H0.1 and You will have normal square
@---MarcosVanzuita---
@---MarcosVanzuita--- 2 ай бұрын
You have seen that one parameterized as a helical square, one more show!! obrigado pela dica e pela atenção!​@@CNCPL1
@MisterDuck999
@MisterDuck999 2 ай бұрын
Can you post the G code? Thanks.
@CNCPL1
@CNCPL1 2 ай бұрын
T202 (CHAMFERING TOOL) G0 G28 H0 G0 C0. G97 S2000 M3 G0 G98 Z-10. (CENTER OF HOLE IN Z AXIS) G0 X30. G1 X23. F500 G19 W0 H0 G07. 1 C13. (C IS HALF OF DIAMETER ON WHICH IS HOLE) G1 W-4. G3 W8. C0 R4. G3 W-8. C0 R4. G1 Z-10. G07. 1 C0 G18 V0 W0 G0 X50.
@---MarcosVanzuita---
@---MarcosVanzuita--- 2 ай бұрын
sensacional.....
@shaktigusai
@shaktigusai 2 ай бұрын
Good morning sir, I want to learn this type of programming cycle for Siemens controller. Please guide me sir...
@jojohnny4386
@jojohnny4386 2 ай бұрын
quindi su un tornio con solo 2 assi (Z X) non si può fare?
@CNCPL1
@CNCPL1 2 ай бұрын
You need Y axis as well. There is no Y axis in program but machine is doing circles in Y axis
@jojohnny4386
@jojohnny4386 2 ай бұрын
@@CNCPL1 grazie mille delle risposte. quindi non c'è un modo per farlo sul mio tornio?
@jojohnny4386
@jojohnny4386 2 ай бұрын
ma da quello che vedo hai l'asse C vero?
@CNCPL1
@CNCPL1 2 ай бұрын
Yes, You are right
@jojohnny4386
@jojohnny4386 2 ай бұрын
grazie della risposta. puoi girarmi il programma utilizzato. grazie
@CNCPL1
@CNCPL1 2 ай бұрын
Hi, at the end of video there is program or in description in full video on my channel.
@shaktigusai
@shaktigusai 2 ай бұрын
Is this possible in Siemens controller?? Please reply me sir... Waiting for your reply
@CNCPL1
@CNCPL1 2 ай бұрын
I have never use siemens controller but if You can use G codes from this program You should be able to do it. YOU can find program in other comments.
@shaktigusai
@shaktigusai 2 ай бұрын
Sir thanks a lot for your reply.. I have already seen your program. There is w and u is there. How is it configure I didn't know that and what chack speed giving for this in this program it is not there chack speed s?? Or it is given in cycle??
@CNCPL1
@CNCPL1 2 ай бұрын
@@shaktigusai There is no S speed because machine is in milling mode and You use feed/minute. W is incremental movement.
@shaktigusai
@shaktigusai 2 ай бұрын
Thanks a lot sir for your reply. I will try to make this cycle for Siemens controller from your fanuc controller cycle.
@shaktigusai
@shaktigusai 2 ай бұрын
For that I have to take help for some person who is know to configure w in Siemens controller. Can you guide me to configure w
@user-cm8qx4hf4o
@user-cm8qx4hf4o 3 ай бұрын
Та ещё шляпа на BMT
@---MarcosVanzuita---
@---MarcosVanzuita--- 3 ай бұрын
Sensacional!
@piter30f54
@piter30f54 3 ай бұрын
Ty to masz ciekawą robotę
@CNCPL1
@CNCPL1 3 ай бұрын
Narzekać nie można. Czasami się coś ciekawego trafi do zrobienia ale często jest monotonnie.
@ammadshabbir1828
@ammadshabbir1828 2 ай бұрын
Excellent 👍
@ammadshabbir1828
@ammadshabbir1828 2 ай бұрын
We got new CNC 4axis machine and I want to learn this type of programming
@CNCPL1
@CNCPL1 2 ай бұрын
@@ammadshabbir1828 You need to get cam software to do it.
@ammadshabbir1828
@ammadshabbir1828 2 ай бұрын
I'm working on fusion 360 but it's not purchased software. Is it possible to do on it
@bogdanzbigniew1798
@bogdanzbigniew1798 3 ай бұрын
Ktoś lubi słuchać dobrych rapsów
@CNCPL1
@CNCPL1 3 ай бұрын
Zdarza się, przeważnie mocniejsza muza gra.
@bogdanzbigniew1798
@bogdanzbigniew1798 3 ай бұрын
Cześć widziałem kilka twoich filmikow i są zajebiste. Jednak na niektorych pokazywales jak na komputerze sprawdzasz swoje makro w jakims symulatorze Jaki to byl symulator czy byl to poproostu cam ?
@CNCPL1
@CNCPL1 3 ай бұрын
Siema. Program to Cimco. Całkiem ciekawy ale nie miałem za bardzo czasu żeby odkryć jego wszystkie zalety.
@bogdanzbigniew1798
@bogdanzbigniew1798 3 ай бұрын
@@CNCPL1 Spoko już go pobrałem, teraz sprawdzę czy syntax Okumy na nim pójdzie.A jak nie to podszkole się w Fanucu i Marco z Fanuca zaadoptuje na sterowanie OSP Okumy
@jahashaik5163
@jahashaik5163 3 ай бұрын
Sir please give me tool specifications
@CNCPL1
@CNCPL1 3 ай бұрын
Probably akko svjcr 08
@jahashaik5163
@jahashaik5163 3 ай бұрын
@@CNCPL1 thank u sir to reply
@vinaykumar-ud9fh
@vinaykumar-ud9fh 3 ай бұрын
How much cost it is
@CNCPL1
@CNCPL1 3 ай бұрын
I found in internet used from 2020 year for 30k euro.
@mostafamadih3080
@mostafamadih3080 3 ай бұрын
Thank you
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
Excellent video, congratulations!!!! Could you take a doubt from me?? In this parametized you use Y axis? Because in the program it seemed to me that I didn't ..
@CNCPL1
@CNCPL1 4 ай бұрын
There is no Y axis in the program, but the program works with the Y axis. All XYZ and C axes work together.
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
@@CNCPL1 ok!
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
Would you happen to have a chain gear program using macro axes Z,X,C.....
@CNCPL1
@CNCPL1 4 ай бұрын
Hi. I dont have macro for chain gear. Sorry
@user-gk5jf8zo9j
@user-gk5jf8zo9j 4 ай бұрын
این ایده رو منم دارم بزودی تراش۳محور میگیرم انشاالله ❤
@user-gk5jf8zo9j
@user-gk5jf8zo9j 4 ай бұрын
تنکیو❤
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
I want to congratulate you on the channel, and on sharing your knowledge...... thank you! I'm from the world of machining and I love this field...... and the parameterization I think is fantastic, it brings a lot of versatility and practicality to everyday life on the factory floor........., I would like to hear from you if By chance I would have parameterized it to make a chain gear....
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
One question... what would this "FIX" be in the program?
@CNCPL1
@CNCPL1 4 ай бұрын
Fix is for rounding down, for example if #113=13.4 then fix is rounding down to 13.
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
@@CNCPL1 Ah I understand, thanks for the information.... I just want to see if this resource the fanuc hi everything recognizes.... here I use something along these lines so that when it's a broken number, it does or accepts the broken number.. ex: IF[#101GT#103]THEN#101=#103 #101=25.0 #103=30.55
@---MarcosVanzuita---
@---MarcosVanzuita--- 4 ай бұрын
Top!
@AhmedGamal-yr2pe
@AhmedGamal-yr2pe 4 ай бұрын
Could you write a simle program for that please . With G code
@fevzicaymaz8828
@fevzicaymaz8828 4 ай бұрын
How can I do this on a lathe?
@Przemo1256
@Przemo1256 4 ай бұрын
nie wiem skąd jesteś ale chciałbym z Tobą pracować. masa fajnych rzeczy na tym kanale
@CNCPL1
@CNCPL1 4 ай бұрын
Siema. Cieszę się że się podoba kanał. Jestem z woj. Pomorskiego może kiedyś będzie nam dane się napic🍻
@Przemo1256
@Przemo1256 4 ай бұрын
@@CNCPL1 Ja z Wielkopolski, może faktycznie kiedyś się trafi. Cóż, w takim razie idę dalej walczyć na swoich staruchach. 😃
@Lathe_CNC.
@Lathe_CNC. 5 ай бұрын
Jakiej marki to narzędzie?
@CNCPL1
@CNCPL1 5 ай бұрын
Carmex
@user-ee2jp6rn7p
@user-ee2jp6rn7p 5 ай бұрын
bhai program show kr do plz
@CNCPL1
@CNCPL1 5 ай бұрын
Program in other comments
@inbaaengineeringandtraders9153
@inbaaengineeringandtraders9153 5 ай бұрын
If post program lines
@CNCPL1
@CNCPL1 5 ай бұрын
Watch full video on my channel there is program
@jueves1977
@jueves1977 5 ай бұрын
Very good video!! Thank you very much for a consultation you could make one for squares circumscribed in a circumference. Thank you very much, sorry for the inconvenience
@yagermeister1303
@yagermeister1303 5 ай бұрын
Looks like a good machine. I work on a similar machine (DMG Mori Sprint50) and i feel curious why you don’t feed next part with the subspindle and then part off, you can gain seconds
@---MarcosVanzuita---
@---MarcosVanzuita--- 5 ай бұрын
Sensacional! 👏🇧🇷
@---MarcosVanzuita---
@---MarcosVanzuita--- 5 ай бұрын
Centro de torneamento são fantástico!!!! Show!
@---MarcosVanzuita---
@---MarcosVanzuita--- 5 ай бұрын
Parabéns pelos vídeos muito bons!!!!! 👏👏🇧🇷
@---MarcosVanzuita---
@---MarcosVanzuita--- 5 ай бұрын
Top 🇧🇷👍
@user-fx5mz5jl9u
@user-fx5mz5jl9u 5 ай бұрын
Sir software nama
@Sasha_DELAET
@Sasha_DELAET 5 ай бұрын
please help, the machine writes the error forbidden plane selection, the selected plane is G17
@CNCPL1
@CNCPL1 5 ай бұрын
Hi. You need to have XYZ axis on Your machine. Use milling Mode and G17 and It should work.
@Sasha_DELAET
@Sasha_DELAET 5 ай бұрын
@@CNCPL1 does not work, milling mode do you mean turning on spindle positioning? there is a command M25, XYZ on the machine. assumption that the machine does not want to move along the three main axes through circular intropolation G02 or G03
@CNCPL1
@CNCPL1 5 ай бұрын
@@Sasha_DELAET Milling mode I mean that You need to turn on C axis. Maybe It can not go in 3 axis together but I think it should. I have try it on doosan and dmgmori
@Sasha_DELAET
@Sasha_DELAET 5 ай бұрын
@@CNCPL1 I understand, thanks, yes, the C axis is enabled G17 is enabled, apparently it really can’t move along three axes, I think in the parameters it’s possible to enable movement along three axes somewhere, but I can’t find where to do it