Help with setting standard initialization parameters (IE initial temperature) #1350
-
#################################### Hello, I am a relatively new pyfluent user. Currently, for my use case, I have created a simulation case and data file created in the fluent GUI, which I load using pyfluent, and then I change various attributes before running. The end goal is to do large parametric studies in an automated fashion. Currently I wish to alter the initial temperature used in standard initialization. However, I cannot find any way to do so. Here are the details of my attempts so far, apologies in advance for my lack of understanding of pyfluent and various jargon terms: solver.solution.initialization() gives the following: {'fmg_initialize': False, There is nothing here which can set attributes in standard initialization The API reference lists the following child: however, doing likewise so it looks like I am missing some commands which are listed in the API reference, I don't know how or why I have also tried So here I am stuck, I don't know how to access the settings for standard initialization using pyfluent |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Beta Was this translation helpful? Give feedback.
-
It looks like |
Beta Was this translation helpful? Give feedback.
It looks like
set_defaults()
method is not available for version 2022R2. You may have to use the TUI command such assession.tui.solve.initialize.set_defaults('k',0.001,'omega',100)
followed bysession.solution.initialization.standard_initialize()