Web version #207
-
I am unable to use the web version of glvis to load my solution (.gf). Is there a particular way to do that? When I click on the "Load local file" button and select the file, nothing happens. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @nvohra0016, The online version does not support separate mesh and grid functions yet, instead it reads GLVis streams, see https://glvis.org/options-and-use/#server-mode, which usually have the extension If you have a mesh
See for example https://github.com/GLVis/data/blob/master/streams/quad.saved. Alternatively you can just save the stream from the desktop GLVis application, if you run it in server mode with The streams are preferable, not only because they combine the mesh and grid function, but also because you can add other GLVis commands at the end, e.g. Hope this helps, |
Beta Was this translation helpful? Give feedback.
-
Thank you very much! I'll try doing this. |
Beta Was this translation helpful? Give feedback.
Hi @nvohra0016,
The online version does not support separate mesh and grid functions yet, instead it reads GLVis streams, see https://glvis.org/options-and-use/#server-mode, which usually have the extension
.saved
.If you have a mesh
my.mesh
and grid functionmy.gf
it is easy to create a stream by concatenating them and addingsolution
on the first line as follows:See for example https://github.com/GLVis/data/blob/master/streams/quad.saved.
Alternatively you can just save the stream from the desktop GLVis application, if you run it in server mode with
glvis -mac
.The streams are preferable, not only because they co…