<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi Nico, <br>
<br>
The vertex data should be stored in MOAB tags. You can access these
tags via their name. There is a set of conventions for the tag names
in an Exodus file (<a
href="http://ftp.mcs.anl.gov/pub/fathom/moab-docs/MBTagConventions_8hpp.html">here</a>
I think). However, if the tag has a custom name and isn't recognized
by the Exodus reader, then the data might not be read in from the
Exodus file and as a result won't be saved into the .h5m. Do you
have an idea of what the tag name might be for your data?<br>
<br>
There's also a good example <a
href="http://ftp.mcs.anl.gov/pub/fathom/moab-docs/SetsNTags_8cpp-example.html">here</a>
of how to access the tag data on an entity. The example I linked you
to accesses EntitySets rather than Entities, but they work the same
way. <br>
<br>
If you think the data might be in the .h5m, you can use <a
href="http://ftp.mcs.anl.gov/pub/fathom/moab-docs/classmoab_1_1Interface.html#a6c737e7900d9c1b29b53d994076d204f">tag_get_tags_on_entity</a>
to get all of the tags on a vertex and then check for the tag data
you're looking for. An easier way of doing this in the cmd line is
by using mbsize -t <your_file>.h5m to print out the count by
tag. <br>
<br>
Hope this helps! <br>
<br>
Cheers, <br>
<br>
<pre class="moz-signature" cols="72">Patrick C. Shriwise
Research Fellow
University of Wisconsin - Madison
Engineering Research Building - Rm. 428
1500 Engineering Drive
Madison, WI 53706
(608) 446-8173
</pre>
<div class="moz-cite-prefix">On 11/08/15 13:43, Nico Schlömer wrote:<br>
</div>
<blockquote
cite="mid:CAK6Z60dasWgU0uAnKJ7QjAPa=9udpv1rPp9jwLjes6oDW=VEEw@mail.gmail.com"
type="cite">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<div dir="ltr">Hi everyone,
<div><br>
</div>
<div>I have an Exodus file with vertex data in it (i.e., "a
function" defined on the vertices). When converting this file
to h5m, where does the vertex data go? And how to I retrieve
the data after having it read with `load_file()`?</div>
<div><br>
</div>
<div>Cheers,</div>
<div>Nico</div>
</div>
</blockquote>
<br>
</body>
</html>