KR452: How can I read a journal (a) from a journal or (b) using execute commands in FLUENT?


FLUENT will not allow the user to have the command

/file/read-journal myjournal.jou (1)

within a journal file or as an execute command. However, FLUENT will allow the user to read a scheme macro from a journal which can contain Text User Interface (TUI) commands if the correct syntax is wrapped around them. So the command

/file/read-macro myscheme.scm (2)

can be used instead of command (1). The syntax required is as follows:

(ti-menu-load-string "my_TUI_command_here")

e.g. to request 300 time-steps to be carried out and 30 sub-iterations per time-step the journal command and equivalent scheme commands are as follows:

/solve/dual-time-iterate 300 30

(ti-menu-load-string "/solve/dual-time-iterate 300 30")





Show Form
No comments yet. Be the first to add a comment!