<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Marcos,<br>
 The easiest way to solve the problem is to reread the parameters and
set their values to your local variables at every iteration. That
solution wastes computation time so a better solution is that you check
IUNIT against the value of INFO(1). If those two values are different
then you know you need to reread the parameter list. If they are the
same, you don't. Take a look at Type6.for. There is a section that
takes care of this problem:<br>
<br>
<font face="Courier New, Courier, monospace">IF(INFO(1).NE.IUNIT) THEN<br>
  !reset the unit number<br>
  IUNIT  = INFO(1)<br>
  ITYPE  = INFO(2)<br>
  !read the parameter values<br>
  QMAX   = PAR(1)<br>
  CP     = PAR(2)<br>
  UA     = PAR(3)<br>
  HTREFF = PAR(4)                         <br>
ENDIF</font><br>
<br>
of course the problem may be more subtle. If there are local variables
that are calculated when you read parameters, those also have to be
recalculated if the unit number changes.<br>
Best,<br>
 David<br>
<br>
On 4/27/2010 08:12, Marcos Porras wrote:
<blockquote
 cite="mid:r2q85e2f8cd1004270612zd6d5e163g7b95ac43fde79f72@mail.gmail.com"
 type="cite"><br>
  <br>
  <div class="gmail_quote">---------- Forwarded message ----------<br>
From: <b class="gmail_sendername">Marcos Porras</b> <span dir="ltr"><<a
 moz-do-not-send="true" href="mailto:100075609@alumnos.uc3m.es">100075609@alumnos.uc3m.es</a>></span><br>
Date: 2010/4/26<br>
Subject: Error using more than one type<br>
To: <a moz-do-not-send="true" href="mailto:trnsys-users@cae.wisc.edu">trnsys-users@cae.wisc.edu</a><br>
  <br>
  <br>
Hello everyone,<br>
  <br>
I developed a type in TRNSYS 16 ,and when I use just one type the
simulation runs correctly but when I use more than one the simulation
doesn´t run properly, it seems that one type is taking the values of
the other, although I've set the IUNIT everytime the iteration starts<br>
has anyone any experience in this kind of error?<br>
  <br>
Thanks in advance<br clear="all">
  <br>
-- <br>
  <font color="#888888">Marcos Porras<br>
  </font></div>
  <br>
  <br clear="all">
  <br>
-- <br>
Marcos Porras<br>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
TRNSYS-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:TRNSYS-users@cae.wisc.edu">TRNSYS-users@cae.wisc.edu</a>
<a class="moz-txt-link-freetext" href="https://www-old.cae.wisc.edu/mailman/listinfo/trnsys-users">https://www-old.cae.wisc.edu/mailman/listinfo/trnsys-users</a>
  </pre>
</blockquote>
</body>
</html>