Skip to content

Commit

Permalink
Update vfquery (#3037)
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed May 3, 2024
1 parent eb21cb8 commit c49524c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/mapdl/core/_commands/aux12_/radiosity_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def vfopt(
command = f"VFOPT,{opt},{filename},{ext},{dir_},{filetype},{fileformat}"
return self.run(command, **kwargs)

def vfquery(self, srcelem="", tarelem="", **kwargs):
def vfquery(self, srcelem="", tarelem="", wropt="", **kwargs):
"""Queries and prints element Hemicube view factors and average view
APDL Command: VFQUERY
Expand Down Expand Up @@ -471,5 +471,5 @@ def vfquery(self, srcelem="", tarelem="", **kwargs):
When resuming a database, issue the command VFOPT,READ before issuing
the VFQUERY command.
"""
command = f"VFQUERY,{srcelem},{tarelem}"
command = f"VFQUERY,{srcelem},{tarelem},,{wropt}"
return self.run(command, **kwargs)

0 comments on commit c49524c

Please sign in to comment.