-
-
October 20, 2023 at 12:13 pm
Caterina Azais
SubscriberHi everyone!
I am new to ansys and have been really struggling to get my code working.... I want to simulate the voltge output of a dielectic material under a uniform pressure acting on the top lectrode. Can someone please please please help me? Thanks !
! Geometryl = 5e-3 ! beam length, mw = 5e-3 ! electrode width, mt = 100e-6 ! thickness, m!LoadingPRES= 10000 !pressure loading, Pa! Material propertiesY = 140e9 ! Young modulus, Pamu=0.358 ! Poisson ratio (nearly incompressible rubber)eps=8.17 ! electrical permittivity, relativeeps0=8.854e-12 ! free-space permittivity, F/m/VUP,1,z/VIEW,1,1,1,1/PREP7ET, 1, 5, 3! == Material parameters! -- Elastic coefficients, MPac11 = 209.71e9c12 = 121.14e9c13 = 105.36e9c33 = 210.9e9c44 = 42.5e9c66 = 44.28e9tb,ANEL,1tbdata, 1, c11, c12, c13tbdata, 7, c11, c13tbdata, 12, c33tbdata, 16, c66tbdata, 19, c44tbdata, 21, c44! -- Piezoelectric coefficients, pC/um2e13 = -0.61e33 = 1.14e15 = -0.59tb,PIEZ,1tbdata, 3, e13tbdata, 6, e13tbdata, 9, e33tbdata,14, e15tbdata,16, e15! -- Dielectric constantsemunit,EPZRO,8.854e-6 ! pF/ummp,PERx,1, 7.57mp,PERy,1, 7.57mp,PERz,1, 8.31! -- model and mesh blockblock,-l/2,l/2,-w/2,w/2,0,t! Set the merging tolerance (adjust as needed)KETOL = 1.0e-5vmesh,1! Structural BC - fix the displacement of bottom facensel,s,loc,x,-l/2d,all,ux,0nsel,r,loc,y,-w/2d,all,uy,0nsel,r,loc,z,0d,all,uz,0nsel,all! Electrical BCnsel,s,loc,z,0nsel,r,loc,x,-l/2,l/2nsel,r,loc,y,-w/2,w/2cp,1,volt,allng=ndnext(0) ! ground nodensel,allnsel,s,loc,z,tcp,2,volt,allnl=ndnext(0) ! load nodensel,all/SOLUantype,staticcnvtol,f,1,1.e-6cnvtol,amps,1,1.e-6cnvtol,volts,1,1.e-6d,ng,volt,0 !put ground node to zero voltsnsel,s,loc,z,tnsel,r,loc,x,-l/2,l/2nsel,r,loc,y,-w/2,w/2sf,all,PRES,0 !apply pressurensel, allsolvefini/POST1nsel,allpldisp,1 ! display deformed/undeformed shapeandscl ! animate deformed/undeformed shapensel,s,loc,x,l/2nd=ndnext(0) ! pick node for displaynsel,r,node,,ndprnsol,epel ! print strainprnsol,volt ! print voltagensel,allfini -
October 20, 2023 at 12:32 pm
Erik Kostson
Ansys EmployeeHi
The restrains, do not seem to be very well defined perhaps – but one issue is the pressure load (sf) sf,all,PRES,0 applies a 0 pressure which is not what one uses as a load (zero loads), and it applies it to the sides as well as the top –
so go through the command reference (e.g., sf command) and some simple apdl examples and then try to understand what you want to do and then how to do it using apdl – I would suggest to do this in workbench, where it is much easier.
Finally go through one of our courses:
https://www.youtube.com/playlist?list=PLtt6-ZgUFmMKFfbOBhmCwG30KIVyvhDop
If you are not able to open the links, refer to this forum discussion: How to access the ANSYS Online Help
Guidelines for Posting on Ansys Learning Forum
Hope that helps
-
October 20, 2023 at 12:57 pm
Caterina Azais
Subscriberthank you so much, that seems to be making much more sense now... I have changed the code as follows, however when i print the PRNSOL commands it says that the S, D, .. data are not available and hence its ignored. What is the problem? Thank you !
! Geometryl = 5e-3 ! beam length, mw = 5e-3 ! electrode width, mt = 100e-6 ! thickness, m! Material propertiesY = 140e9 ! Young modulus, Pamu=0.358 ! Poisson ratio (nearly incompressible rubber)eps=8.17 ! electrical permittivity, relativeeps0=8.854e-12 ! free-space permittivity, F/m/VUP,1,z/VIEW,1,1,1,1/PREP7ET, 1, 5, 3! == Material parameters! -- Elastic coefficients, MPac11 = 209.71e9c12 = 121.14e9c13 = 105.36e9c33 = 210.9e9c44 = 42.5e9c66 = 44.28e9tb,ANEL,1tbdata, 1, c11, c12, c13tbdata, 7, c11, c13tbdata, 12, c33tbdata, 16, c66tbdata, 19, c44tbdata, 21, c44! -- Piezoelectric coefficients, pC/um2e13 = -0.61e33 = 1.14e15 = -0.59tb,PIEZ,1tbdata, 3, e13tbdata, 6, e13tbdata, 9, e33tbdata,14, e15tbdata,16, e15! -- Dielectric constantsemunit,EPZRO,8.854e-6 ! pF/ummp,PERx,1, 7.57mp,PERy,1, 7.57mp,PERz,1, 8.31! -- model and mesh blockblock,-l/2,l/2,-w/2,w/2,0,t! Set the merging tolerance (adjust as needed)KETOL = 1.0e-5vmesh,1! Structural BCnsel,s,loc,z,0d, all, volt, 0d,all,ux,0d,all,uy,0d,all,uz,0nsel,allnsel,s,loc,z,tSF,ALL,PRES,10000 ! APPLY PRESSURE LOADNSEL,ALLFINISH/SOLVEOUTPR,,LAST/OUT,SCRATCHSOLVEFINISH/POST1/OUT,PRNSOL,S,COMPPRNSOL,EPEL,COMPPRNSOL,EF,COMPPRNSOL,D,COMP -
October 20, 2023 at 1:21 pm
Erik Kostson
Ansys Employeehappy we could help.
See the video (post process) :
https://www.youtube.com/playlist?list=PLtt6-ZgUFmMKFfbOBhmCwG30KIVyvhDop
Also see the SET,LAST,LAST POST1 command in the command reference
Erik
-
- You must be logged in to reply to this topic.

Boost Ansys Fluent Simulations with AWS
Computational Fluid Dynamics (CFD) helps engineers design products in which the flow of fluid components is a significant challenge. These different use cases often require large complex models to solve on a traditional workstation. Click here to join this event to learn how to leverage Ansys Fluids on the cloud, thanks to Ansys Gateway powered by AWS.

Earth Rescue – An Ansys Online Series
The climate crisis is here. But so is the human ingenuity to fight it. Earth Rescue reveals what visionary companies are doing today to engineer radical new ideas in the fight against climate change. Click here to watch the first episode.

Ansys Blog
Subscribe to the Ansys Blog to get great new content about the power of simulation delivered right to your email on a weekly basis. With content from Ansys experts, partners and customers you will learn about product development advances, thought leadership and trends and tips to better use Ansys tools. Sign up here.
- Saving & sharing of Working project files in .wbpz format
- Solver Pivot Warning in Beam Element Model
- Understanding Force Convergence Solution Output
- An Unknown error occurred during solution. Check the Solver Output…..
- What is the difference between bonded contact region and fixed joint
- The solver engine was unable to converge on a solution for the nonlinear problem as constrained.
- whether have the difference between using contact and target bodies
- Defining rigid body and contact
- Colors and Mesh Display
- A solver pivot warning or error has been detected
-
8740
-
4658
-
3151
-
1678
-
1452
© 2023 Copyright ANSYS, Inc. All rights reserved.