thanks a lot for the example. I should have read the document better ;)<br><br><div class="gmail_quote">On Mon, Jul 19, 2010 at 3:15 AM, Geordie McBain <span dir="ltr"><<a href="mailto:gdmcbain@freeshell.org">gdmcbain@freeshell.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">2010/7/16 Christophe Prud'homme <<a href="mailto:prudhomm@debian.org">prudhomm@debian.org</a>>:<br>
> Dear Gmsh Developers,<br>
> It is not clear to me if it is possible to do<br>
>  - x-y plots (1D geometry  + a scalar field )<br>
<br>
Yes.  See tutorial/t8.geo.  The key is View.Type = 2.  There are quite<br>
a few other things going on in t8 though, so I attach a minimal<br>
example.  Also, my example uses the standard .msh format for the data<br>
rather than the deprecated .pos format.<br>
<br>
%<--x.msh<br>
$MeshFormat<br>
2.2 0 8<br>
$EndMeshFormat<br>
$Nodes<br>
3<br>
1 0 0 0<br>
2 1 0 0<br>
3 2 0 0<br>
$EndNodes<br>
$Elements<br>
2<br>
1 1 2 1 1 1 2<br>
2 1 2 1 2 2 3<br>
$EndElements<br>
%<--end x.msh<br>
<br>
%<--y.msh<br>
$MeshFormat<br>
2.2 0 8<br>
$EndMeshFormat<br>
$NodeData<br>
1<br>
"ordinate"<br>
1<br>
0.0<br>
3<br>
0<br>
1<br>
3<br>
1 1.0<br>
2 2.0<br>
3 5.0<br>
$EndNodeData<br>
%<--end y.msh<br>
<br>
%<--xy.geo<br>
Merge "x.msh";<br>
Merge "y.msh";<br>
<br>
View[0].Type = 2;               // 2 for 2D space<br>
View[0].Axes = 1;               // 1 for simple axes<br>
%<--end xy.geo<br>
</blockquote></div><br>