Over 1.092.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and variables.
Discussion forum
?CAD discussions, advices, exchange of experience

Please abide by the rules of this forum.
This is a peer-to-peer forum. The forum doesn't replace the official direct technical support provided by ARKANCE for its customers.
How to post questions: register or login, go to the specific forum and click the NEW TOPIC button.
|
Post Reply ![]() |
Author | |
Jkirch ![]() Newbie ![]() Joined: 06.Jan.2011 Location: United States Using: None Status: Offline Points: 1 |
![]() Posted: 12.Feb.2011 at 06:15 |
Hi,
I'm working on a project using Realflow and 3Ds max and I need some help. I am trying to show the temperature change of water through a treatment pond. The water coming in the inlet is hot and as it exits it is cooler. It would be great if I could show the hot water as red then transition to blue as the water cools. Is there any way to show this with Realflow and 3ds max or some way to make the particles change color over time? Thanks for all the help. |
|
![]() |
|
derockere ![]() Newbie ![]() Joined: 19.Feb.2011 Location: Belgium Using: Autocad 2018 Status: Offline Points: 4 |
![]() |
The indication for cold or hot water needs of different segments are connected.
The line items labeled as "GROUP" consecutive numbers.
It is possible to work with a lisp-routine.
;;This lisp change the color of a group, this group have numbers
;;Is only type st as command!! (defun c:st (/ getbestand nummer bestand read1 lijst wie waar) (setq getbestand (getstring "\nName of text file plus extension...")) (setq nummer 1) (repeat 10 (setq nummer (+ nummer 1)) (setq bestand (findfile getbestand)) (if (null bestand) (print "File not found....") (progn (setq bestand (open getbestand "r")) (setq read1 (read-line bestand)) (if (null read1) (print "File has no content...") (while read1 (setq lijst (read (strcat "(" read1 ")"))) (if (= (car lijst) nummer) (setq read1 nil) (progn (setq read1 (read-line bestand)) (setq lijst nil) ) ) ) ) (close bestand) (if (null lijst) (print "File this value has not...") (progn (setq gr-r (cadr list)) (command "change" "g" gr-r "" "p" "ltscale" "0.01" "") (command "change" "g" gr-r "" "p" "la" "kabelbanen" "") ) ) ) ) ) ) Note: "kabelbanen" = the name of a layer!! Thus, you should change the name "bestand" = file "nummer" = number |
|
Better well ask, then signed too.
|
|
![]() |
|
Cad64 ![]() Senior Member ![]() Joined: 17.Apr.2010 Location: United States Using: Autocad 2011, 3DS Max 2011, Photoshop CS5 Status: Offline Points: 491 |
![]() |
You can't run lisp routines in 3DS Max.
|
|
Online Portfolio: http://www.rdeweese.com/
|
|
![]() |
|
derockere ![]() Newbie ![]() Joined: 19.Feb.2011 Location: Belgium Using: Autocad 2018 Status: Offline Points: 4 |
![]() |
Sorry!!!
|
|
Better well ask, then signed too.
|
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
This page was generated in 0,307 seconds.