Path Workbench/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Redirected page to CAM Workbench/de)
Tag: New redirect
 
(332 intermediate revisions by 9 users not shown)
Line 1: Line 1:
#REDIRECT [[CAM_Workbench/de]]
<languages/>
[[Image:Path-Workbench.svg|64px]]
==Einleitung==

Mit dem Path Arbeitsbereich können zum Betrieb von CNC Maschinen benötigte Befehlssätze erstellt werden. Unterstützt werden, Stand März 2018, Fräsen, Lasercutter, Graviermaschinen und ähnliche, 3 achsige CNC Maschinen deren Steuerung auf G-Code basiert.
Die Path Postprozessoren erstellen G-Code in vielen verbreiteten Varianten, z.B. für Centroid-, grbl-, LinuCNC-, Philips- gestützte Maschinencontroller.


{{TOCright}}
<div class="mw-translate-fuzzy">
[[Image:Path-PathWB-de.jpg|frameless|center|upright=2.8]]
</div>

Der FreeCAD Arbeitsbereich Path erstellt diese Befehlssätze mit folgendem Arbeitsablauf:
* Ein 3D Modell, erstellt mit einer der FreeCAD Arbeitsbereiche [[PartDesign Workbench/de|Part Design]], [[Part Workbench/de|Part]] oder [[Draft Workbench/de|Draft]], ist das Basis Objekt.
* Ein [[Path_Job/de|Job]] wird im Path Arbeitsbereich erzeugt. Der Job enthält alle zur Erzeugung eines auf einer CNC Fräse ausführbaren g-codes nötigen Informationen:
Enthalten sind die Abmessungen des Rohmaterials, die zur Verfügung stehenden [[Path_EditToolsTable/de|Werkzeuge]] und die zur Steuerung von Verfahrgeschwindigeit und Spindeldrehzahl benötigten Parameter.
* Werkzeuge werden passend zum Fräsvorgang ausgewählt.
* Der Fräspfad wird erstellt durch die Auswahl der benötigten Operation, z.B. [[Path_Profile/de|Contour]] oder [[Path_Pocket_3D/de|Pocket]]. Diese [[Path objects/de|Path Objekte]] werden primär in einem, von der CNC Maschine unabhängigen, FreeCAD G-Code Dialekt erstellt.
* Der Job wird in einem zur Maschine passendem G-Code exportiert.


=== Links für den schnellen Einstieg ===
Abhängig von Ihrem Interesse am Path-Arbeitsbereich gibt es Lesestoff zu verschiedene Themen:

* Wenn Sie sich als neuer Anwender schnell in "Path" einarbeiten möchten: [[Path Walkthrough for the Impatient/de|hier ein schneller Einstieg]].
* Wenn Sie eine Maschine besitzen welche nicht von enem der in FreeCAD integrierten postprozessoren unterstützt wird möchten Sie eventuell wissen wie Sie einen [[Path_Postprocessor_Customization|personalisierten postprozessor]] erstellen können.
* Als erfahrener FreeCAD Nutzer möchten Sie ein Makro erstellen oder einen Prozess automatisieren und möchten wissen wie das [[Path_scripting|Skript]] dazu erstellt werden muss.
* Als ergahrener FreeCAD Nutzer möchten sie ihren Arbeitsablauf beschleunigen und wissen wie die FreeCAD Oberfläche ihren Wünschen [[Path_Customization|angepasst]] werden kann.
* Als Entwickler möchten Sie zu "Path" beitragen und sich über die [[Path_Core_Concepts|core concepts]] informieren.

== General concepts ==
The Path Workbench generates G-Code defining the paths required to mill the Project represented by the 3D model on the target mill in [https://www.freecadweb.org/wiki/Path_scripting#FreeCAD.27s_internal_GCode_format the Path Job Operations FreeCAD G-Code dialect], which is later translated to the appropriate dialect for the target CNC controller by selecting the appropriate postprocessor.
The G-Code is generated from directives and Operations contained in a Path Job. The Job Workflow lists these in the order they will be executed. The list is populated by adding Path Operations, Path Dressups, Path Partial Commands, and Path Modifications from the Path Menu, or GUI buttons.

Der Path Arbeitsbereich enthält einen Werkzeug Manager (Bibliothek, Verzeichnis, Werkzeugtabelle), eine G-Code Überprüfung und ein Simulationswerkzeug. Path verlinkt zum Postprozessor und erlaubt den Im- und Export von Job Vorlagen.

The Path Workbench has external dependencies including:
# The FreeCAD 3D model units are defined in the {{MenuCommand|Edit → Preference → General → Units tab's Units settings}}. The Postprocessor configuration defines the final G-Code units.
# The Macro file path, and Geometric tolerances, are defined in the {{MenuCommand|Edit → Preferences → Path → Job Preferences}} tab.
# Colors are defined in the {{MenuCommand|Edit → Preferences → Path → Path colors}} tab.
# Holding tag parameters are defined in the {{MenuCommand|Edit → Preferences → Path → Dressups}} tab.
# That the Base 3D model quality supports the Path WB requirements, passes Check Geometry.

== Units ==

Unit handling in Path can be confusing. There are several points to understand:
# FreeCAD base units for length and time are 'mm' and 's' respectively. Velocity is thus 'mm/s'. This is what FreeCAD stores internally regardless of anything else
# The default unit schema uses the default units. If you're using the default schema and you enter a feed rate without a unit string, it will get entered as 'mm/s'
# Most CNC machines expect feed rate in the form of either 'mm/min' or 'in/min'. Most post-processors will automatically convert the unit when generating gcode.

Schemas:
# Changing schema in preferences changes default unit string for the input fields. If you're a Path user and prefer to design in metric, it's highly recommended that you use the "Metric Small Parts & CNC" schema. If you design in US units, either the Imperial Decimal and Building US will work
# Changing your preferred unit schema will have no effect on output but will help avoid input errors

Output:
# Generating the correct unit in output is the responsibility of the post-processor and is done only at that time
# Machine output unit is completely unrelated to your selected unit schema
# Post-processors produce either metric (G21) output, Imperial (G20) output or are configurable.
# Configurable post-processors default to metric (G21)
# If you want your configurable post-processor to output imperial gcode (G20), Set the correct argument in your job output configation (ie --inches for linuxcnc). This can be stored in a job template and set as your default template to make it automatic for all future jobs

Path Inspection:
# If you use the Path Inspect tool to look at g-code, you will see it in 'mm/s' because it is not being post-processed

==Path Kommandos==

Mit diesen Kommandos werden CNC Projekte und Vorlagen erstellt und verwaltet.

* [[Image:Path-Job.png|32px]] [[Path_Job|Job]]: Erstellt einen neuen CNC Job

* [[Image:Path_PostProcess.png|32px]] [[Path_Post|Post Process]]: Erstellt aus einem Job eine G-code Datei

* [[Image:Path-ExportTemplate.png|32px]] [[Path_ExportTemplate|Export Template]]: Speichert den ausgewählten Job als Vorlage

* [[File:Path_Inspect.png|32px]] [[Path_Inspect|G-Code Inspector]]: Zeigt den G-code zur Überprüfung

* [[File:Path_Simulator.png|32px]] [[Path_Simulator|Simulator]]: Zeigt eine Simulation des Fräsvorgangs wie er auf der Maschine ausgeführt wird.

* [[Image:Path_ToolLibraryEdit.png|32px]] [[Path_ToolLibraryEdit|Tool Manager]]: Aufruf der Werkzeugtabelle

* [[File:Path-CompleteLoop.png|32px]] [[Path_SelectLoop|Complete Loop]]: Erstellt aus 2 ausgewählten Kanten einen geschlossenen Ring

* [[File:Path_Contour.png|32px]] [[Path_Contour|Contour]]: Erzeugt einen Fräspfad aus der Kontur des Basisobjekts

* [[Image:Path-Profile-Face.png|32px]] [[Path_ProfileFace|Profile from Face]]: Erzeugt einen Kontur- Fräspfad um eine ausgewälte Fläche

* [[Image:Path-Profile-Edges.png|32px]] [[Path_ProfileEdges|Profile from Edges]]: Erzeugt einen Kontur- Fräspfad von ausgewählten Kanten

* [[Image:Path_Pocket.png|32px]] [[Path_Pocket_Shape|Pocket]]: Erzeugt einen Fräspfad für eine Tasche aus einer oder mehreren ausgewählten Taschen

* [[Image:Path_Drilling.png|32px]] [[Path_Drilling|Drilling]]: Erzeugt den Pfad für eine oder mehrere Bohrungen

* [[Image:Path-Engrave.png|32px]] [[Path_Engrave|Engrave]]: Erzeugt einen Pfad für Gravuren

* [[Image:Path-Face.png|32px]] [[Path_MillFace|Mill Face]]: Erzeugt einen Pfad zum Planen von Oberflächen

* [[Image:Path-Helix.png|32px]] [[Path_Helix|Helix]]: Erzeugt einen Helixförmigen Fräspfad

* [[Image:Path-3DPocket.png|32px]] [[Path_Pocket_3D|3D Pocket]]: Erzeugt einen Fräspfad für eine 3D Tasche

===Path Fräspfad Erweiterungen===

* [[Image:Path_Dressup.png|32px]] [[Path_DressupDogbone|Dogbone Dressup]]: Fügt dem ausgewählten Pfad eine "dogbone" Erweiterung zu

* [[Image:Path_Dressup.png|32px]] [[Path_DressupDragKnife|Dragknife Dressup]]: Ändert den ausgewählten Pfad für den Einsatz eines Zugmessers

* [[Image:Path_Dressup.png|32px]] [[Path_DressupLeadInOut|Lead In Dressup]]: Fügt dem ausgewählten Pfad eine horizontale Anfahrrampe zu

* [[Image:Path_Dressup.png|32px]] [[Path_DressupRampEntry|Ramp Entry Dressup]]: Fügt dem ausgewählten Pfad eine vertikale Anfahrrampe zu

* [[Image:Path_Dressup.png|32px]] [[Path_DressupTag|Tag Dressup]]: Fügt dem ausgewählten Pfad eine Erweiterung für Haltestege zu

===Zusätzliche Kommandos===

* [[Image:Path_Fixture.png|32px]] [[Path_Fixture|Fixture]]: Verschiebt den Nullpunkt der Maschine.

* [[Image:Path_Comment.png|32px]] [[Path_Comment|Comment]]: Fügt einen Kommentar in den G-Code eines Pfades ein.

* [[Image:Path_Stop.png|32px]] [[Path_Stop|Stop]]: Fügt einen Maschinen Stop ein.

* [[Image:Path_Custom.png|32px]] [[Path_Custom|Custom]]: Fügt manuell erstellen G-Code ein

* [[Image:Path_GcodeFromShape.png|32px]] [[Path_FromShapes|Gcode From a Shape]]: Erstellt einen Fräspfad entlang einer oder mehrerer Linien

===Path Modifikationen===

* [[Image:Path_Copy.png|32px]] [[Path_Copy|Eine Operation des Jobs Kopieren]]: Erstellt eine parametrische Kopie der ausgewählten Operation.

* [[Image:Path_Array.png|32px]] [[Path_Array|Anordnung]]: Erstellt ein Array aus dem ausgewählten Pfad.

* [[Image:Path_SimpleCopy.png|32px]] [[Path_SimpleCopy|Simple Copy]]: Erstellt eine einfache Kopie des gewählten Pfades.

==Weitere==

* [[Image:Path-3DSurface.png|32px]] [[Path_Surface|3D Surface]]: Erstellt den Fräspfad für eine 3D Oberfläche

* [[Image:Path-Area.png|32px]] [[Path_Area|Feature area]]: Creates a feature area from selected objects

* [[Image:Path-Area-Workplane.png|32px]] [[Path_Area_Workplane|Feature area workplane]]: Creates a feature area workplane

* [[File:Path_Sanity.png|32px]] [[Path_Sanity|Path Errors]]: Überprüft den ausgewählten Job auf fehlende Angaben

===Preferences===

* [[Image:Std_DlgParameter.png|32px]] [[Path_Preferences|Preferences...]]: Preferences disposable in Path Tools.


== Scripting ==

See the [[Path scripting]] page.

The Path workbench offers a broad [[Python]] scripting API. With it, you can create and modify paths from python scripts, or extend the available functionality of the workbench.

== FAQ ==

See the [[Path FAQ]]

The Path Workbench shares many concepts with other CAM software packages but has its own peculiarities. If something seems wrong, this might be a good place to start.

<div class="mw-translate-fuzzy">
[[Category:User Documentation/de]]
</div>
{{clear}}

Latest revision as of 19:43, 17 March 2024

Redirect to: