File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1999,7 +1999,7 @@ def prepare(self) -> int:
19991999 self ._sim_dict [resfilename ] = df_data
20002000
20012001 mscmd = mod_structure .simulate_cmd (
2002- resultfile = resultfile .absolute ().resolve (),
2002+ result_file = resultfile .absolute ().resolve (),
20032003 timeout = self ._timeout ,
20042004 )
20052005 if self ._simargs is not None :
@@ -2147,12 +2147,12 @@ def get_solutions(
21472147 continue
21482148
21492149 if var_list is None :
2150- var_list_row = list (self ._mod .getSolutions (resultfile = resultfile ))
2150+ var_list_row = list (self ._mod .getSolutions (resultfile = resultfile . as_posix () ))
21512151 else :
21522152 var_list_row = var_list
21532153
21542154 try :
2155- sol = self ._mod .getSolutions (varList = var_list_row , resultfile = resultfile )
2155+ sol = self ._mod .getSolutions (varList = var_list_row , resultfile = resultfile . as_posix () )
21562156 sol_data = {var : sol [idx ] for idx , var in enumerate (var_list_row )}
21572157 sol_dict [resultfilename ]['msg' ] = 'Simulation available'
21582158 sol_dict [resultfilename ]['data' ] = sol_data
You can’t perform that action at this time.
0 commit comments