-
-
March 16, 2023 at 8:38 am
Naeel D
SubscriberHello all,
I have attempted to simulate additive manufacturing using ANSYS APDL. I have already applied an element type of SOLID278 with relevant material properties for aluminum 7075. I have also used 'Mapped Meshing' due to my design parameters. In addition to this, I have used the 'Element Birth and Death Technique' with a 'DO* LOOP' to simulate the additive manufacturing of 'Laser Cladding'. However, after running my PYANSYS code, I am running into this error where physical gaps are visible once the simulation is complete (shown in the image below). I would appreciate the solution to this cause.
The following code below is my code used for the full process in ANSYS APDL:
!----------------!Pre-processing----------------Â/PREP7Â!*ÂET,1,SOLID70   !Thermal 3D elementÂ!----------------!Defining Material Properties----------------Â!*Â/UNIT,SIÂMPTEMP,,,,,,,, ÂMPTEMP,1,0 ÂMPDATA,EX,1,,71.7e09MPDATA,PRXY,1,,0.32ÂMPTEMP,,,,,,,, ÂMPTEMP,1,0 ÂMPDATA,KXX,1,,130 ÂMPTEMP,,,,,,,, ÂMPTEMP,1,0 ÂMPDATA,C,1,,960ÂMPTEMP,,,,,,,, ÂMPTEMP,1,0 ÂMPDATA,DENS,1,,2810ÂÂ!----------------!Geometry----------------Â/PREP7 ÂK, ,0,0,0, !Modelling with Keypoints to create geometryK, ,0.004,0,0, ÂK, ,0.005,0,0, ÂK, ,0.005,0,0.002, ÂK, ,0.004,0,0.002, ÂK, ,0,0,0.002, ÂK, ,0,0.004,0, ÂK, ,0.004,0.004,0, ÂK, ,0.005,0.004,0, ÂK, ,0.005,0.004,0.002, ÂK, ,0.004,0.004,0.002, ÂK, ,0,0.004,0.002, ÂÂK, ,0,0.005,0, ÂK, ,0.004,0.005,0, ÂK, ,0.005,0.005,0, ÂK, ,0.005,0.005,0.002, ÂK, ,0.004,0.005,0.002, ÂK, ,0,0.005,0.002, Â!*CYL4,0.005,0.005,0.0005, , , ,0.002 !Create Cyclinderlplot ÂKL,7,0.5, , ÂKL,2,0.5, ,Â!*/REPLO !Create Volumes from KeypointsV,    1,    2,    5,    6,    7,    8,   11,   12 ÂV,    2,    3,    4,    5,    8,    9,   10,   11 ÂV,    7,    8,   11,   12,   13,   14,   17,   18 ÂV,   14,   21,   25,   17,    8,   28,   27,   11 ÂV,    8,   28,   27,   11,    9,   19,   26,   10 Â!*FLST,2,2,6,ORDE,2  !Substract Cyclinder from Main VolumeFITEM,2,5 ÂFITEM,2,-6 ÂVSBV,P51X,    1 ÂÂ!----------------!Optimised Mesh (Mesh Size 0.4mm)----------------Âlplot ÂFLST,5,41,4,ORDE,10ÂFITEM,5,9 ÂFITEM,5,11 ÂFITEM,5,-40ÂFITEM,5,42 ÂFITEM,5,-43ÂFITEM,5,45 ÂFITEM,5,47 ÂFITEM,5,-48ÂFITEM,5,50 ÂFITEM,5,-54ÂCM,_Y,LINE ÂLSEL, , , ,P51XÂCM,_Y1,LINEÂCMSEL,,_Y Â!* ÂLESIZE,_Y1,0.0004, , , , , , ,1Â!* ÂÂ!----------------!Creating the Mesh (0.4mm)----------------ÂFLST,5,5,6,ORDE,4 ÂFITEM,5,2 ÂFITEM,5,-4 ÂFITEM,5,7 ÂFITEM,5,-8 ÂCM,_Y,VOLU ÂVSEL, , , ,P51XÂCM,_Y1,VOLUÂCHKMSH,'VOLU' ÂCMSEL,S,_Y Â!* Â!* ÂVCLEAR,_Y1 ÂVMESH,_Y1 Â!* ÂCMDELE,_Y ÂCMDELE,_Y1 ÂCMDELE,_Y2 Â!* ÂÂ!----------------!Solutions-Settings----------------Â/SOLTUNIF,293,      !Uniform temperatureTREF,293,      !Reference temperatureKBC,0  !Ramped loadingNEQIT,100   !No. of iterationÂ!* ÂANTYPE,4    !Define model Transient Analysis!* ÂTRNOPT,FULL  !Define Solution MethodLUMPM,0  !Use of 'Lumped Mass approx.'!*    ÂNROPT,FULL  !Specify Newton-Raphson as Full Transient AnalysisTIME,1  !End of Time StepÂ!----------------!Kill all ELEMENTS----------------ÂÂ!* ÂFLST,5,114,1,ORDE,2    !Select all NODESFITEM,5,1 ÂFITEM,5,-114NSEL,S, , ,P51XÂESLN,S     !Select all ELEMENTS attached to those NODES/GRAPHICS,FULL  !Turn Off POWERGRAPHICSEKILL,ALL  !Deactivate all ELEMENTSESEL,S,LIVE      !To confirm success of EKILL command: Select all 'Live ELEMENTS'/REPLOÂ!----------------!DO LOOP COMMAND----------------Â*set,user_time,0Â!*do,variable_z,0,0.002,0.001!*do,variable_y,0,0.005,0.0012*do,variable_x,0,0.0012,0.0012ÂNSEL,S,LOC,X,1*variable_x,0.0012+variable_xNSEL,R,LOC,Y,1*variable_y,0.0012+variable_yNSEL,R,LOC,Z,1*variable_z,*0.001+variable_zÂESLN,SEALIVE,ALL  !Re-Activate Selected NODESSFE,ALL, ,HFLUX, ,10e05!DELTIM,0.1,0,0       !Time step size, 0.1 suser_time=user_time+1TIME,user_time       !Total time, 1 sAllSEL,ALLSOLVESFEDELE,all,all,all      !Removing surface element load/GRAPIHCS,POWER               !Turn On POWERGRAPHICSesel,s,liveeplot*enddo!*enddo!*enddoÂÂÂThank you,
Naeel D
-
March 22, 2023 at 12:41 pm
John Doyle
Ansys EmployeeSeems like an error in your select logic. What happens if you select all the elements before the last plot (as a test)?
-
March 22, 2023 at 3:02 pm
-
-
March 22, 2023 at 6:34 pm
John Doyle
Ansys EmployeeI think it still comes down to select logic. The gray elements are what remain killed.
-
May 30, 2023 at 2:17 pm
mrife
Ansys EmployeeHi Naeel
Check this code block as there are more than 114 nodes in the model. Instead of using picking commands, maybe change to nsel,all and esel,all etc
Â
!----------------!Kill all ELEMENTS----------------ÂÂ!*Â ÂFLST,5,114,1,ORDE,2 Â Â Â !Select all NODESFITEM,5,1Â ÂFITEM,5,-114NSEL,S, , ,P51XÂESLN,S Â Â Â Â !Select all ELEMENTS attached to those NODES/GRAPHICS,FULL Â !Turn Off POWERGRAPHICSEKILL,ALL Â !Deactivate all ELEMENTSESEL,S,LIVE Â Â Â Â Â !To confirm success of EKILL command: Select all 'Live ELEMENTS'/REPLO
-
- The topic ‘Error in Additive simulation via ANSYS APDL’ is closed to new replies.
-
2773
-
965
-
841
-
599
-
591
© 2025 Copyright ANSYS, Inc. All rights reserved.