<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    Dear TRNSYS users (and developers), <br>
    <br>
    With TRNSYS 17, Type 15-6 generate the following error when trying
    to start a simulation between hours 1024 to 4095, with a small time
    step (eg 0.1 or 0.15 hour):<br>
    <br>
    "Message : Unable to correctly read from the supplied data file -
    please check the file an re-run the simulation."<br>
    <br>
    Have you ever got the same error in this configuration?<br>
    <br>
    <br>
    I also observed a mistake in the code of Type15 when calculating
    maximum and minimum of monthly avarage temperatures:<br>
    <br>
    The code is as follows :<br>
    <br>
            ! Calculate the max and min monthly average<br>
                 j_min=1<br>
                 j_max=1<br>
                 Do j=2,12<br>
                    If (month_ave_T(j) > month_ave_T(j-1)) j_max=j<br>
                    If (month_ave_T(j) < month_ave_T(j-1)) j_min=j<br>
                 EndDo<br>
    <br>
    With this code, in the Nothern hemisphere, January can't be the
    coldest month even if it is. The coldest month will generally be
    December that is colder that November. I think the code should be:<br>
    <br>
            ! Calculate the max and min monthly average<br>
                 j_min=1<br>
                 j_max=1<br>
                 Do j=2,12<br>
                    If (month_ave_T(j) > month_ave_T(<font
      color="#ff0000">j_max</font>)) j_max=j<br>
                    If (month_ave_T(j) < month_ave_T(<font
      color="#ff0000">j_min</font>)) j_min=j<br>
                 EndDo<br>
    <br>
    Regards,<br>
    <div class="moz-signature">-- <br>
      <title>Signature Sam</title>
      <font size="2" color="black" face="arial"><i>
          <b>Samuel Hennaut</b><br>
          Chercheur - Doctorant<br>
          <br>
          Université de Liège<br>
          Département Sciences et Gestion de l'Environnement<br>
          Equipe BEMS - Building Energy Monitoring and Simulation <br>
          185, Avenue de Longwy <br>
          B-6700 ARLON </i></font><br>
      <br>
      <img src="cid:part1.08010307.08000302@ulg.ac.be" title="BEMS"
        heigth="87" align="left" width="91">
      <font size="2" color="black" face="arial"><i>
            Tel: 32-(0)63-230 948<br>
            Fax: 32-(0)63 230 800<br>
            email: <a href="mailto:shennaut@ulg.ac.be">shennaut@ulg.ac.be</a><br>
            WEB: <a href="http://www.dsge-arlon.ulg.ac.be/bems">http://www.dsge-arlon.ulg.ac.be/bems</a>
          <br>
          <br>
          <br>
          <img src="cid:part2.09050306.02060602@ulg.ac.be"
            title="CAMPUS" align="left">
          <br>
          <br>
          <br>
          <br>
          <br>
          <br>
        </i></font>
    </div>
  </body>
</html>