<br />
Thanks for all the help. No, in the pull-down selection box of the color
field<br />
there are then only the fields:<br />
<br />
Color by:<br />
Cell cellNormals (3)<br />
and Point Normals (3) (+of course the normal uni-color &quot;Property&quot;
selection)<br />
This is what drive me crazy ...<br />
<br />
Any other ideas?<br />
<br />
I have found a python script that basically converts the xyz data into:<br />
<br />
xyz + scalar .vtk data file. Using this just for the<br />
point location information and setting simply the scalar value to the<br />
z-coordinate (quick and dirty) the .vtk file is read and all the colors are<br
/>
displayed perfectly on the points. The file format is quite simple:<br />
<br />
Therefore I decided to write a small program that parses the .case file and<br
/>
converts all the data into one single VTK file.<br />
<br />
The converter (as far as I have understood) just takes all the points and<br />
defines single-vertex cells (whatever this is). However this can be opened
and<br />
colorized in paraview without any problems.<br />
<br />
Any further ideas (I think I still am doing something wrong) are welcome ...<br
/>
<br />
For those who are interested, this is the format of the .vtk file that works:<br
/>
<br />
- Holger -<br />
<br />
-----------------------------------------------------------------------------<br
/><font size="1" face="courier new,courier,monospace">
# vtk DataFile Version 2.0<br />
loop<br />
ASCII<br />
DATASET UNSTRUCTURED_GRID<br />
POINTS 1510578 float<br />
 1.59800e+02  1.46900e+02  1.38800e+02<br />
 ....<br />
CELLS 1510578 3021156<br />
1 0<br />
1 1<br />
1 2<br />
...<br />
1 1510577<br />
CELL_TYPES 1510578<br />
1<br />
1<br />
...<br />
1<br />
1<br /><br />
POINT_DATA 1510578<br />
SCALARS Z_Value float 1<br />
LOOKUP_TABLE default<br />
 1.38800e+02<br />
 1.38800e+02<br />
 1.38800e+02<br />
...</font>
<br />
-------------------------------------------------------------------------<br />
<br />
&gt;<br />
&gt; After loading your Ensight data, apply the Glyph filter with the sphere<br
/>
&gt; glyph to create the particle effect in your points and choose your
scalar<br />
&gt; field to scale and/or colorize your data. To colorize, go to
&quot;display&quot; tab<br />
&gt; in the field &quot;color by&quot; choose your scalar field. I guess it'll
work...<br />
&gt;<br />
&gt; Regards<br />
&gt;<br />
<br />
<br />