<div dir="ltr">Hi Reju,<div><br></div><div style>Well, that depends on your dataset, since enzo will not necessarily write the same fields to disk for every simulation.  Suppose you've loaded a dataset like so:</div><div style>

<br></div><div style>>>> pf = load('DD0050/DD0050')</div><div style>>>> pf.h</div><div style><br></div><div style>then pf.h.field_list will be the list of the fields that are in the dataset on disk and pf.h.derived_field_list will be the list of derived fields that are available based on pf.field_list (i.e. the list of fields enzo originally wrote to disk).  These are just regular python lists, so you can count them, sort them, and iterate over them:</div>

<div style><br></div><div style>>>> len(pf.h.field_list)</div><div style>>>> sorted(pf.h.field_list)</div><div style>>>> for f in pf.h.field_list: print f</div><div style><br></div><div style>You might also find pf.field_info useful. This object is a mapping from field names to FieldInfo objects that contain information about fields.  For example, if I wanted to know more about the RadialVelocity field, I could do:</div>

<div style><br></div><div style>>>> print pf.field_info['RadialVelocity'].get_source()</div><div><br></div><div style>This prints out the python source code for the field.  You can also just look in universal_fields.py for the same information, although sometimes it's nice to see the source for a derived field from inside a running python session.</div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jul 8, 2013 at 9:48 PM, Reju Sam John <span dir="ltr"><<a href="mailto:rejusamjohn@gmail.com" target="_blank">rejusamjohn@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><font face="arial, helvetica, sans-serif" size="4">Dear all,</font><div><font face="arial, helvetica, sans-serif" size="4"><br>

</font></div><div><font face="arial, helvetica, sans-serif" size="4">In yt distribution where I can find the definition of Enzo Fields that YT knows (like <span style="line-height:22.390625px;text-align:justify">TotalEnergy, </span><span style="line-height:22.390625px;text-align:justify">GasEnergy, etc. </span><span style="text-align:justify">). </span></font></div>


<div><span style="text-align:justify"><font face="arial, helvetica, sans-serif" size="4"><br></font></span></div><div><span style="text-align:justify"><font face="arial, helvetica, sans-serif" size="4">Please help me. </font></span></div>

<span class="HOEnZb"><font color="#888888">
<div><span style="text-align:justify"><font face="arial, helvetica, sans-serif" size="4"><br></font></span></div><div><span style="text-align:justify"><font face="arial, helvetica, sans-serif" size="4"><br></font></span></div>


<div><font face="arial, helvetica, sans-serif" size="4">-- <br></font><div dir="ltr"><font face="arial, helvetica, sans-serif" size="4">Reju Sam John</font></div>
</div></font></span></div>
<br>_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
<br></blockquote></div><br></div>