<p dir="ltr">Gerd, sorry about the delay. We have an upcoming release and so I haven't had time to push a clean fix for this. I will be looking at this today and will let you know when the branch is ready. </p>
<p dir="ltr">Thanks for your patience. </p>
<p dir="ltr">Vijay</p>
<div class="gmail_quote">On Dec 17, 2014 9:14 AM, "Gerd Heber" <<a href="mailto:gheber@hdfgroup.org">gheber@hdfgroup.org</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Any other thoughts? (This is a real showstopper for me...)<br>
<br>
G.<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:moab-dev-bounces@mcs.anl.gov">moab-dev-bounces@mcs.anl.gov</a> [mailto:<a href="mailto:moab-dev-bounces@mcs.anl.gov">moab-dev-bounces@mcs.anl.gov</a>] On Behalf Of Gerd Heber<br>
Sent: Monday, December 15, 2014 6:59 AM<br>
To: MOAB dev<br>
Subject: Re: [MOAB-dev] DMMoabOutput<br>
<br>
No iMesh here. The tags are created as dense tags via get_tag_handle/tag_set_data.<br>
<br>
G.<br>
<br>
-----Original Message-----<br>
From: Grindeanu, Iulian R. [mailto:<a href="mailto:iulian@mcs.anl.gov">iulian@mcs.anl.gov</a>]<br>
Sent: Saturday, December 13, 2014 9:14 AM<br>
To: Vijay S. Mahadevan; Gerd Heber<br>
Cc: MOAB dev<br>
Subject: RE: [MOAB-dev] DMMoabOutput<br>
<br>
The problem is the type of the tags<br>
Probably the new tags are created with iMesh_createTag() method from iMesh This method creates sparse tags (I don't remember why it is not sparse by default; maybe to be more general) In order to create a dense tag with iMesh, you need to use iMesh extensions method<br>
<br>
iMesh_createTagWithOptions<br>
<br>
something like<br>
 iBase_TagHandle tagh;<br>
  iMesh_createTagWithOptions(mesh, "dum", "moab:TAG_STORAGE_TYPE=DENSE", 1, iBase_DOUBLE, &tagh, &err, 3, 27);<br>
<br>
<br>
With the right options, the tag will be dense, and saved in the entities portion of the h5m file<br>
<br>
<br>
Iulian<br>
<br>
<br>
________________________________________<br>
From: <a href="mailto:moab-dev-bounces@mcs.anl.gov">moab-dev-bounces@mcs.anl.gov</a> [<a href="mailto:moab-dev-bounces@mcs.anl.gov">moab-dev-bounces@mcs.anl.gov</a>] on behalf of Vijay S. Mahadevan [<a href="mailto:vijay.m@gmail.com">vijay.m@gmail.com</a>]<br>
Sent: Friday, December 12, 2014 10:31 PM<br>
To: Gerd Heber<br>
Cc: MOAB dev<br>
Subject: Re: [MOAB-dev] DMMoabOutput<br>
<br>
Gerd, this is possibly a bug in MOAB writer. I'll test your input file and see if I can replicate the issue on output. DMMoabOutput does not do anything else explicitly other than calling save on the Core object itself.<br>
<br>
Iulian, can you also take a look at this to see if you can replicate the issue. I want to make sure that the problem is not just due to mixed elements + element tag combinations.<br>
<br>
Vijay<br>
<br>
On Fri, Dec 12, 2014 at 7:24 AM, Gerd Heber <<a href="mailto:gheber@hdfgroup.org">gheber@hdfgroup.org</a>> wrote:<br>
> Maybe I'm doing something stupid, but I see some weird behavior from<br>
> DMMoabOutput. My input mesh is feawd.3.h5m. It has a mixture of Hex8<br>
> and Prism6 elements. I create a few nodal and element tags and call<br>
> DMMoabOutput to create feawd.out.h5m. The nodal tags look fine, but<br>
> the element tags get written correctly only for the prisms.<br>
> Something gets written for the hex elements, but it gets written in<br>
> the wrong place (under /tstt/tags/ instead of /tstt/elements/Hex8/tags).<br>
> Another indicator that something fishy is going on is that the<br>
> GLOBAL_ID tag has disappeared from Hex8 in the output file.<br>
> Maybe another "protocol error"?<br>
><br>
> Thanks for your help.<br>
> G.<br>
</blockquote></div>