<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>CAD Forum discussion (EN) : Water Tempertatures</title>
  <link>https://www.cadforum.cz/forum_en/</link>
  <description><![CDATA[This is an XML content feed of; CAD Forum discussion (EN) : 3ds Max, Maya, VRED : Water Tempertatures]]></description>
  <pubDate>Sat, 04 Jul 2026 08:25:47 +0000</pubDate>
  <lastBuildDate>Thu, 10 Mar 2011 07:40:18 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum_en/RSS_post_feed.asp?TID=5303</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD Forum discussion (EN)]]></title>
   <url>https://www.cadforum.cz/forum_en/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum_en/</link>
  </image>
  <item>
   <title><![CDATA[Water Tempertatures : Sorry!!! ]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13817&amp;title=water-tempertatures#13817</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=169701">derockere</a><br /><strong>Subject:</strong> 5303<br /><strong>Posted:</strong> 10.Mar.2011 at 07:40<br /><br />Sorry!!!]]>
   </description>
   <pubDate>Thu, 10 Mar 2011 07:40:18 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13817&amp;title=water-tempertatures#13817</guid>
  </item> 
  <item>
   <title><![CDATA[Water Tempertatures : You can&amp;#039;t run lisp routines...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13806&amp;title=water-tempertatures#13806</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=111013">Cad64</a><br /><strong>Subject:</strong> 5303<br /><strong>Posted:</strong> 09.Mar.2011 at 21:24<br /><br />You can't run lisp routines in 3DS Max.]]>
   </description>
   <pubDate>Wed, 09 Mar 2011 21:24:34 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13806&amp;title=water-tempertatures#13806</guid>
  </item> 
  <item>
   <title><![CDATA[Water Tempertatures : The indication for cold or hot...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13805&amp;title=water-tempertatures#13805</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=169701">derockere</a><br /><strong>Subject:</strong> 5303<br /><strong>Posted:</strong> 09.Mar.2011 at 19:36<br /><br /><FONT color=#0000ff>The indication for cold or hot water needs of different segments are connected.</FONT><DIV></DIV><FONT color=#0000ff>The line items labeled as "GROUP" consecutive numbers.</FONT><DIV></DIV><FONT color=#0000ff>It is possible to work with a lisp-routine.</FONT><DIV>&nbsp;</DIV><DIV></DIV><DIV></DIV><DIV></DIV><DIV>;;This lisp change the color of a group, this group have numbers<BR>;;Is only type <strong>st</strong> as command!!<BR>(defun c:st (/ getbestand nummer bestand read1 lijst wie waar)<BR>&nbsp;(setq getbestand (getstring "\nName of text file plus extension..."))<BR>&nbsp;(setq nummer 1)<BR>&nbsp;(repeat 10<BR>&nbsp; (setq nummer (+ nummer 1))<BR>&nbsp; (setq bestand (findfile getbestand))<BR>&nbsp; (if (null bestand)<BR>&nbsp;&nbsp; (print "File not found....")<BR>&nbsp;&nbsp; (progn<BR>&nbsp;&nbsp;&nbsp; (setq bestand (open getbestand "r"))<BR>&nbsp;&nbsp;&nbsp; (setq read1 (read-line bestand))<BR>&nbsp;&nbsp;&nbsp; (if (null read1)<BR>&nbsp;&nbsp;&nbsp;&nbsp; (print "File has no content...")<BR>&nbsp;&nbsp;&nbsp;&nbsp; (while read1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq lijst (read (strcat "(" read1 ")")))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (if (= (car lijst) nummer)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq read1 nil)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (progn<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq read1 (read-line bestand))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq lijst nil)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp; (close bestand)<BR>&nbsp;&nbsp;&nbsp; (if (null lijst)<BR>&nbsp;&nbsp;&nbsp;&nbsp; (print "File this value has not...")<BR>&nbsp;&nbsp;&nbsp;&nbsp; (progn<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq gr-r (cadr list))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (command "change" "g" gr-r "" "p" "ltscale" "0.01" "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (command "change" "g" gr-r "" "p" "la" "kabelbanen" "")<BR>&nbsp;&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp;&nbsp; )<BR>&nbsp;&nbsp; )<BR>&nbsp; )<BR>&nbsp;)<BR>)<BR>Note: "kabelbanen" = the name of a layer!! Thus, you should change the name<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "bestand"&nbsp;&nbsp;&nbsp;&nbsp; = file<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "nummer"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = number</DIV>]]>
   </description>
   <pubDate>Wed, 09 Mar 2011 19:36:11 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13805&amp;title=water-tempertatures#13805</guid>
  </item> 
  <item>
   <title><![CDATA[Water Tempertatures : Hi,I&amp;#039;m working on a project...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13324&amp;title=water-tempertatures#13324</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=159517">Jkirch</a><br /><strong>Subject:</strong> 5303<br /><strong>Posted:</strong> 12.Feb.2011 at 06:15<br /><br /><span ="Apple-style-span" style="color: rgb(51, 51, 51); font-size: 11px; line-height: 15px; ">Hi,&nbsp;<br><br>I'm working on a project using Realflow and 3Ds max and I need some help.<br><br>I am trying to show the temperature change of water through a treatment pond.<br><br>The water coming in the inlet is hot and as it exits it is cooler.<br><br>It would be great if I could show the hot water as red then transition to blue as the water cools.&nbsp;<br><br>Is there any way to show this with Realflow and 3ds max or some way to make the particles change color over time?<br><br>Thanks for all the help.</span>]]>
   </description>
   <pubDate>Sat, 12 Feb 2011 06:15:07 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5303&amp;PID=13324&amp;title=water-tempertatures#13324</guid>
  </item> 
 </channel>
</rss>