CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT

transient animation

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 28, 2000, 10:17
Default transient animation
  #1
Kai Kang
Guest
 
Posts: n/a
Hi all, this is a kind of old topic but I am not sure if anybody has a solution:

For a transient simulation which usually has tens of data/case files. Is there any scripting commands for Fluent journal file such that without listing everything, I can just do something like this---

string name //each case like name000i

for i = 1 to Max

string filename = name+i

f rcd filename q

//...do stuff,contour, hardcopy, etc.

hardcopy to filename%t.tif

continue;

Thanks a lot,

Kai

  Reply With Quote

Old   July 3, 2000, 10:56
Default Re: transient animation
  #2
Chris
Guest
 
Posts: n/a
I sometimes use a function like this:

(transient-do "~/test/xxx0*.cas*" "~/test/xxxhc.jou")

to repeatedly read in case/data files and run
the specified journal file for each of them.
The code for transient-do is appended below.
Note that you could replace the cx-read-journal
line with more ti-menu-load-string lines to
explicitly run more text interface commands.



;;
;; transientdo.scm
;;
;; (transient-do fnpattern journal)
;;
;; Given a filename pattern (using shell wildcards)
;; and a journal file name, iteratively reads in each
;; filename (using read-case-data) and executes the
;; specified journal.
;; Currently only works on unix and processes the
;; files in the order the shell returns them.
;;

(define (transient-do fnpattern journal)
(set! *cx-overwrite-prompt?* #f)
(let loop ((files (file-pattern-exists? fnpattern)))
(if (pair? files)
(begin
(ti-menu-load-string (format #f "rcd ~a" (car files)))
(cx-read-journal journal)
(loop (cdr files))))))


;; Override to get rid of prompts

(define (ok-to-discard-case?) #t)
(define (ok-to-discard-data?) #t)
  Reply With Quote

Old   August 10, 2000, 10:49
Default Re: transient animation
  #3
Volker Pawlik
Guest
 
Posts: n/a
I used the following way:

1. create a list file of all case or data files by: ls > list.dat (on a UNIX system)

2. then use the "find and change" functionallity of your editor to add the necessary commands before and behind the file name. Just add what you want to add, mark and paste it into the corresponding window (carriage returns included)

3. The only thing you might have to correct by hand is the numbering of the hardcopy files. But there are ways to avoid this (small fortran or c program)
  Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Transient animation performance in CFX 5.5 POST Sjoerd Romkes CFX 8 February 5, 2013 14:53
animation of transient simulation using batch file Markus FLUENT 1 October 17, 2007 10:30
Animation During Transient MKP CFX 2 July 14, 2006 09:28
animation of a transient analysis using pavaview? harry Main CFD Forum 10 May 17, 2006 12:41
Transient data animation ANindya FLUENT 0 April 15, 2002 10:55


All times are GMT -4. The time now is 13:24.