-
Hello, `from ansys.mapdl.core import launch_mapdl bearing_file = "C:/Users/HertingerT/OneDrive-SAF-HOLLANDGmbH/Desktop/GestufteLagerung/33213.sat" mapdl.aux15() mapdl.satin(name="bearing", extension=".sat" ,path=bearing_file, entity="ALL", fmt="1") mapdl.exit()` However, the output looks like that: C:\Users\HertingerT\AppData\Local\anaconda3\lib\site-packages\ansys\mapdl\core\mapdl.py:1529: UserWarning: Either no volumes have been selected or there is nothing to plot. Is there a problem with the file path or the general CAD model? Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 9 replies
-
Hello! Can you share the SAT file? Kind regards, |
Beta Was this translation helpful? Give feedback.
-
Hi @herttim & @germa89 1 SATIN is not a AUX15 command So then this: from ansys.mapdl.core import launch_mapdl
mapdl = launch_mapdl()
bearing_file = r"'C:/Users/HertingerT/OneDrive-SAF-HOLLANDGmbH/Desktop/GestufteLagerung/'"
mapdl.satin(name="33213", extension="sat" ,path=bearing_file, entity="ALL", fmt=1)
print(mapdl.geometry) Mike |
Beta Was this translation helpful? Give feedback.
-
I also have troubles to read in that geometry In [18]: print(mapdl._run("~SATIN,aa33213,sat,,all"))
QUERY = COMMON,,IGES_TOL,,INT,5
ANSYS Connection for ACIS
Part name: /home/mapdl/jobs/aa33213.sat
Output file: aa33213.anf
Entities: ALL
File type: ANF
*** WARNING *** CP = 8.055 TIME= 08:26:41
File aa33213.anf does not exist.
The /INPUT command is ignored.
***** ROUTINE COMPLETED ***** CP = 8.056 and In [19]: print(mapdl._run("~SATIN,aa33213,sat,,all,1"))
ANSYS Connection for ACIS
Part name: /home/mapdl/jobs/aa33213.sat
Output file: aa33213.aaa
Entities: ALL
File type: AAA
/INPUT FILE= aa33213.aux LINE= 0
***** ROUTINE COMPLETED ***** CP = 8.703
*** MAPDL - ENGINEERING ANALYSIS SYSTEM RELEASE 2022 R2 22.2 ***
Ansys Mechanical Enterprise
00000000 VERSION=LINUX x64 08:27:20 SEP 01, 2023 CP= 8.703
***** INPUT DATA FILE CONVERSION UTILITY (AUX15) *****
IGES IS AVAILABLE IN THIS UTILITY.
NOTE- DEFAULT INPUT FILE NAME IS file.cad.
ENTER FINISH TO EXIT AUX15.
XANF_BEGIN
ANSYS Geometry API Version: 5.5:i23
Input File: "aa33213.aaa"
File "aa33213.aaa" not found!
XANF_END
/INPUT FILE= PRIMARY INPUT FILE LINE=
***** ROUTINE COMPLETED ***** CP = 8.705 |
Beta Was this translation helpful? Give feedback.
-
@germa89 @herttim Mike |
Beta Was this translation helpful? Give feedback.
@germa89 @herttim
I had to change the fmt to 0 in order for the import to create the volumes. If left at 1 the volumes are not created but the areas on down are:
Mike