CAM Custom/fr: Difference between revisions

From FreeCAD Documentation
No edit summary
(Created page with "Etant donné que la commande Code G personnalisé ne fournit aucun lien vers un contrôleur d’outil, si un outil est utilisé par le code G personnalisé, vous devez écrire...")
Line 6: Line 6:
Cet outil insère un objet chemin créé à partir de code G personnalisé codé à la main.
Cet outil insère un objet chemin créé à partir de code G personnalisé codé à la main.


Etant donné que la commande Code G personnalisé ne fournit aucun lien vers un contrôleur d’outil, si un outil est utilisé par le code G personnalisé, vous devez écrire l’index de l'outil, ainsi que le code M de démarrage de la broche, afin qu'il soit transmis à le post-processeur. Cela garantit que les changements d’outil et les démarrages seront correctement générés.
Because the Custom G-Code command provides no link to a Tool Controller, if a Tool is used by the custom G-Code, the Tool index must be written, along with the Spindle Start M-Code, in order that it is passed to the Postprocessor. This ensures that Tool changes and starts will be properly generated.


For example, to convey to the Postprocessor that the Tool used in the Custom G-Code operation has Tool index 6, and a Spindle Speed of 10,000, insert the following code at the beginning of the Custom G-Code Operation:
For example, to convey to the Postprocessor that the Tool used in the Custom G-Code operation has Tool index 6, and a Spindle Speed of 10,000, insert the following code at the beginning of the Custom G-Code Operation:

Revision as of 19:20, 4 November 2018

Path Custom

Emplacement du menu
Path → Partial Commands → Custom
Ateliers
Path
Raccourci par défaut
Aucun
Introduit dans la version
-
Voir aussi
Aucun

Description

Cet outil insère un objet chemin créé à partir de code G personnalisé codé à la main.

Etant donné que la commande Code G personnalisé ne fournit aucun lien vers un contrôleur d’outil, si un outil est utilisé par le code G personnalisé, vous devez écrire l’index de l'outil, ainsi que le code M de démarrage de la broche, afin qu'il soit transmis à le post-processeur. Cela garantit que les changements d’outil et les démarrages seront correctement générés.

For example, to convey to the Postprocessor that the Tool used in the Custom G-Code operation has Tool index 6, and a Spindle Speed of 10,000, insert the following code at the beginning of the Custom G-Code Operation:

(T6: 4mm Endmill)

M6 T6

M3 S10000

Note that Feed rates will be correctly generated by the Postprocessor, only if the Custom G-Code Feed rates are written in Units/second.

Utilisation

  1. Pressez le bouton Custom
  2. Écrivez le G-Code adapté dans la propriété G Code de l'objet nouvellement créé. Voyez la page Path scripting pour les commandes G-Code acceptées.

Propriétés

  • DonnéesG Code: Les commandes G-Code sur lequelles sont construites le chemin.