-
Hi, Command and error message:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Just in case it helps -- I see a couple of '-' (hyphen / dash / minus) signs in your code line. They'll be interpreted as the algebraic minus operator. You might need to replace (some of) them by underscores ('_'). Also, for named objects, usually something like "['obj-name']" would appear... (Please do not expect any further help from me, I'm not an expert, just noticed the potential typo[s].) |
Beta Was this translation helpful? Give feedback.
-
Thanks everyone for your help. To generate a report-based convergence criteria in pyFluent use the command below: solver.solution.monitor.convergence_conditions.convergence_reports["criterion-name"] = {'previous_values_to_consider': 10, 'initial_values_to_ignore': 100, 'stop_criterion': 0.01, 'report_defs': ["report-name"], 'print': True} |
Beta Was this translation helpful? Give feedback.
Thanks everyone for your help.
To generate a report-based convergence criteria in pyFluent use the command below:
solver.solution.monitor.convergence_conditions.convergence_reports["criterion-name"] = {'previous_values_to_consider': 10, 'initial_values_to_ignore': 100, 'stop_criterion': 0.01, 'report_defs': ["report-name"], 'print': True}