You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File ~.ansys_python_venvs\pydyna_workshop_25_v1\lib\site-packages\ansys\dyna\core\run\local_solver.py:161, in run_dyna(input, **kwargs)
158 runner = get_runner(**kwargs)
159 runner.set_input(input_file, wdir)
--> 161 result = runner.run()
162 if container != None and kwargs.get("stream", True) is False:
163 return result
🔍 Before submitting the issue
🐞 Description of the bug
CalledProcessError Traceback (most recent call last)
Cell In[40], line 3
1 from ansys.dyna.core.run import run_dyna, MpiOption
----> 3 run_dyna(r"D:\PYDYNA_AFT\WORKSHOP\input.k",mpi_option=MpiOption.MPP_MS_MPI, working_directory="./kwd_out", container_env=0)
File ~.ansys_python_venvs\pydyna_workshop_25_v1\lib\site-packages\ansys\dyna\core\run\local_solver.py:161, in run_dyna(input, **kwargs)
158 runner = get_runner(**kwargs)
159 runner.set_input(input_file, wdir)
--> 161 result = runner.run()
162 if container != None and kwargs.get("stream", True) is False:
163 return result
File ~.ansys_python_venvs\pydyna_workshop_25_v1\lib\site-packages\ansys\dyna\core\run\windows_runner.py:98, in WindowsRunner.run(self)
96 """Run LS-DYNA."""
97 self._write_runscript()
---> 98 subprocess.check_call(
99 f"cmd /c {self._scriptname}",
100 shell=False,
101 universal_newlines=True,
102 cwd=self.working_directory,
103 stdin=subprocess.PIPE,
104 stdout=subprocess.PIPE,
105 stderr=subprocess.PIPE,
106 )
File ~\AppData\Local\Programs\Python\Python310\lib\subprocess.py:369, in check_call(*popenargs, **kwargs)
367 if cmd is None:
368 cmd = popenargs[0]
--> 369 raise CalledProcessError(retcode, cmd)
370 return 0
CalledProcessError: Command 'cmd /c lsruncommand.bat' returned non-zero exit status 4294967292.
📝 Steps to reproduce
run_dyna(r"D:\PYDYNA_AFT\WORKSHOP\input.k",mpi_option=MpiOption.MPP_MS_MPI, working_directory="./kwd_out", container_env=0)
💻 Which operating system are you using?
Windows
📀 Which ANSYS version are you using?
No response
🐍 Which Python version are you using?
3.11
📦 Installed packages
The text was updated successfully, but these errors were encountered: