Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: missing arguments in secdata #3295

Merged
merged 3 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/3295.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix: missing arguments in secdata
6 changes: 4 additions & 2 deletions src/ansys/mapdl/core/_commands/preproc/sections.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,8 @@ def secdata(
val10="",
val11="",
val12="",
val13="",
val14="",
**kwargs,
):
"""Describes the geometry of a section.
Expand All @@ -630,7 +632,7 @@ def secdata(

Parameters
----------
val1, val2, val3, . . . , val12
val1, val2, val3, . . . , val14
Values, such as thickness or the length of a side or the numbers of
cells along the width, that describe the geometry of a section. The
terms VAL1, VAL2, etc. are specialized for each type of cross-
Expand Down Expand Up @@ -681,7 +683,7 @@ def secdata(

Type: BEAM, Subtype: HATS
"""
command = f"SECDATA,{val1},{val2},{val3},{val4},{val5},{val6},{val7},{val8},{val9},{val10},{val11},{val12}"
command = f"SECDATA,{val1},{val2},{val3},{val4},{val5},{val6},{val7},{val8},{val9},{val10},{val11},{val12},{val13},{val14}"
return self.run(command, **kwargs)

def secjoint(
Expand Down
Loading