Skip to content

Commit e7d33f7

Browse files
fix: harfrq command (#3729)
* fix: harfrq command * chore: adding changelog file 3729.fixed.md [dependabot-skip] --------- Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent 4e9fc46 commit e7d33f7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/changelog.d/3729.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: harfrq command

src/ansys/mapdl/core/_commands/solution/dynamic_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def harfrq(self, freqb="", freqe="", logopt="", freqarr="", toler="", **kwargs):
261261
262262
This command is also valid in PREP7.
263263
"""
264-
command = f"HARFRQ,{freqb},{freqe},{logopt},{freqarr},{toler}"
264+
command = f"HARFRQ,{freqb},{freqe},,{logopt},{freqarr},{toler}"
265265
return self.run(command, **kwargs)
266266

267267
def hrexp(self, angle="", **kwargs):

0 commit comments

Comments
 (0)