<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic But, my world was shattered in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179028#M148177</link>
    <description>&lt;P&gt;But, my world was shattered when I found the date and time is not running at a constant rate, instead we have a kernal you need to look up to check for leap seconds.&amp;nbsp; I can not longer add 200000 seconds to a time and know the answer.&lt;/P&gt;&lt;P&gt;Time is not linear as measured, of course it is somewhat linear as long as you do not move.&amp;nbsp; Although if I sit still time moves very slowly.&lt;/P&gt;&lt;P&gt;All relative.&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS My grandmother would read the tea leaves.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 26 Jan 2020 17:30:43 GMT</pubDate>
    <dc:creator>JohnNichols</dc:creator>
    <dc:date>2020-01-26T17:30:43Z</dc:date>
    <item>
      <title>Boiling Water</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179026#M148175</link>
      <description>&lt;P&gt;Do you think anyone has ever written a Fortran program to estimate the change in temperature as water is boiled in a kettle.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ask because I used to be able to make a cup of tea in the time it took to compile a program on COMPAQ Portable using MS Fortran 3&lt;/P&gt;&lt;P&gt;Now I can make a cup of tea in the time it takes to run my program that generates "good" mesh for FEM models of buildings and bridges.&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS the latest version of VS 2019 preview does not pick up some changes in files needing to be recompiled -- it is interesting,&amp;nbsp;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 15:25:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179026#M148175</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2020-01-26T15:25:13Z</dc:date>
    </item>
    <item>
      <title>Relax, and be thankful! No</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179027#M148176</link>
      <description>&lt;P&gt;Relax, and be thankful! No matter how much the run times of your programs change over the years, you can always check the answers in constant time by reading the tea leaves.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 15:48:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179027#M148176</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2020-01-26T15:48:12Z</dc:date>
    </item>
    <item>
      <title>But, my world was shattered</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179028#M148177</link>
      <description>&lt;P&gt;But, my world was shattered when I found the date and time is not running at a constant rate, instead we have a kernal you need to look up to check for leap seconds.&amp;nbsp; I can not longer add 200000 seconds to a time and know the answer.&lt;/P&gt;&lt;P&gt;Time is not linear as measured, of course it is somewhat linear as long as you do not move.&amp;nbsp; Although if I sit still time moves very slowly.&lt;/P&gt;&lt;P&gt;All relative.&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS My grandmother would read the tea leaves.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 17:30:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179028#M148177</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2020-01-26T17:30:43Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;Time is not linear as</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179029#M148178</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;Time is not linear as measured.&lt;/P&gt;&lt;P&gt;"Time flies like an arrow; fruit flies like a banana"&lt;/P&gt;&lt;P&gt;Speaking of non-linear time, when you write a simulation program with a delta time increment (fractional seconds) you should use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; T = T + dT&amp;nbsp;&amp;nbsp; ! advance time interval&lt;/P&gt;&lt;P&gt;Instead use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; T = BaseTime +&amp;nbsp;dT * integrationStep&lt;/P&gt;&lt;P&gt;The reason for doing so is to avoid a potential of accumulation of round-off errors (one for each advancement of dT). Using the product form introduces only a single instance of potential round-off error.&lt;/P&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2020 22:17:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179029#M148178</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-01-26T22:17:38Z</dc:date>
    </item>
    <item>
      <title>In my dynamic simulations dT</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179030#M148179</link>
      <description>&lt;P&gt;In my dynamic simulations dT is not constant but may vary between dTmin and dTmax so I have to write:&lt;BR /&gt;Tn+1 = Tn + dT&lt;/P&gt;&lt;P&gt;Greetings&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 09:10:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179030#M148179</guid>
      <dc:creator>LRaim</dc:creator>
      <dc:date>2020-01-27T09:10:57Z</dc:date>
    </item>
    <item>
      <title> T = T + dT   ! advance time</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179031#M148180</link>
      <description>&lt;P&gt;&amp;nbsp;T = T + dT&amp;nbsp;&amp;nbsp; ! advance time interval&lt;/P&gt;&lt;P&gt;It all depends on how many bites you use for T and dT. 4 bytes gives a surprisingly poor performance, failing beyond&amp;nbsp;about 10^6 time steps, while 8 bytes does not present a problem for typical values I have used.&lt;/P&gt;&lt;P&gt;Was it coffee and cake or just a cookie for the&amp;nbsp;compile ?&lt;/P&gt;&lt;P&gt;After a few bites of a small cookie you might return disappointed.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 13:14:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179031#M148180</guid>
      <dc:creator>John_Campbell</dc:creator>
      <dc:date>2020-01-27T13:14:02Z</dc:date>
    </item>
    <item>
      <title>One of the bugs I found in</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179032#M148181</link>
      <description>&lt;P&gt;One of the bugs I found in the CEQUAL-W2 model was exactly this. The model has a variable time step, based on a stability test relating to volume replacement in grid cells. &amp;nbsp; The variable keeping track of time was single precision, representing simulation day and didn't become apparent until the days got up into 1000 or so, and showed up as mass balance error.&amp;nbsp; Another problem I had to fix was in determining when to change inflow values in the time series of inflows.&amp;nbsp; The logic went something like this. &amp;nbsp; jday = jday + delta&amp;nbsp; and then&amp;nbsp; if jday &amp;gt; time for next input change then swap to new input value.&amp;nbsp; The problem here is that&amp;nbsp; delta was changing with the inflows, such that you'd get small deltas when inflows were large, and small deltas when inflows were low.&amp;nbsp; The cumulative effect of this is that low flows were applied longer than they should have been more than large flows, again leading to mass balance errors.&amp;nbsp; The cure was to put in a check after computing a new delta that didn't allow it to be larger than the distance to the next change in time series inputs.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 13:53:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179032#M148181</guid>
      <dc:creator>cryptogram</dc:creator>
      <dc:date>2020-01-27T13:53:12Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;In my dynamic simulations</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179033#M148182</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;&lt;EM&gt;In my dynamic simulations dT is not constant but may vary between dTmin and dTmax so I have to write: Tn = Tn + dT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;My simulations also use dynamic changing of&amp;nbsp; dT.&amp;nbsp; There are many instances where modifying of dT are useful (required). Such as:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;When approaching collision of particles&lt;BR /&gt;&amp;nbsp;&amp;nbsp; When&amp;nbsp;approaching transition from slack to taut or taut to slack&lt;BR /&gt;&amp;nbsp;&amp;nbsp; When approaching yield point&lt;/P&gt;&lt;P&gt;In these situations consider using:&lt;/P&gt;&lt;P&gt;Tn = Tn + dT * TicksSinceChangeInDeltaT&lt;/P&gt;&lt;P&gt;And when you change dT, set TicksSinceChangeInDeltaT=1 (or 0 depending on where you place the increment).&lt;/P&gt;&lt;P&gt;Also, be mindful that, depending on the simulation,&amp;nbsp;a change in dT may need to be gradual.&lt;/P&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 15:29:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179033#M148182</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-01-27T15:29:24Z</dc:date>
    </item>
    <item>
      <title>cryptogram&gt;&gt; The cure was to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179034#M148183</link>
      <description>&lt;P&gt;cryptogram&amp;gt;&amp;gt;&amp;nbsp;&lt;EM&gt;The cure was to put in a check after computing a new delta that didn't allow it to be larger than the distance to the next change in time series inputs&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;cryptogram's experience is typical of accumulation of round-off errors can affect a simulation, and in his case in a large way.&amp;nbsp;The description of his cure indicates that his change in dT requires more care than a simple change (as I described in #8). In his (?her)&amp;nbsp;case, the change had to fulfill specific anniversary requirements. The change of dT is not necessarily a trivial coding matter, and should be taken with care.&lt;/P&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 15:42:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179034#M148183</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-01-27T15:42:56Z</dc:date>
    </item>
    <item>
      <title>The change of dT is not</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179035#M148184</link>
      <description>&lt;P&gt;The change of dT is not necessarily a trivial coding matter, and should be taken with care.&lt;/P&gt;&lt;P&gt;I am finding that out with the OED program, unfortunately I do not have all the data Fryba had and so cannot match his results, and the start time can be very problematic - as a coding problem changing dt is harder than the original problem.&amp;nbsp; It takes a short OED program and turns it nto pages of hard to follow code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was however asking about boiling water -- interesting how these random problems turn into interesting streams - like the moon shot problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 18:24:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179035#M148184</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2020-01-27T18:24:05Z</dc:date>
    </item>
    <item>
      <title> Node            1       0  0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179036#M148185</link>
      <description>&lt;P&gt;&amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;6 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;8 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.200000002980E+00 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Node &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;9 &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;0.200000002980E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp;0.100000001490E+00 &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The results from using a REAL(4) in place of a real real -- has a visible impact.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 18:30:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1179036#M148185</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2020-01-27T18:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Boiling Water</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1224464#M152450</link>
      <description>&lt;P&gt;Well sir, it is an intense processor, the most intake is 140W, the temperature might be usually among 25 like see there some &lt;A href="https://thehomebeasts.com/" target="_self"&gt;guide&lt;/A&gt;&lt;A href="https://community.intel.com/t5/Processors/High-temps-on-water-cooled-i7-5820k/m-p/1224463#M47285" target="_self"&gt;https://community.intel.com/t5/Processors/High-temps-on-water-cooled-i7-5820k/m-p/1224463#M47285&lt;/A&gt;and forty Celsius ranges in idle mode using memories at 2133MHz and default settings.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Nov 2020 17:52:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Boiling-Water/m-p/1224464#M152450</guid>
      <dc:creator>poldslae3</dc:creator>
      <dc:date>2020-11-01T17:52:16Z</dc:date>
    </item>
  </channel>
</rss>

