Dear yt users,
I have a 3D cylindrical data set in FLASH. Has anyone tried visualizing them?
I found ATHENA is supported but, I didn't find anything for FLASH. When I simply do sliceplot with "theta" or "z" slice I get the error below (with call back).
Thank You in advance, Rahul
---------------------------------------------------------------------------YTDataTypeUnsupported Traceback (most recent call last)<ipython-input-9-5ab982893667> in <module>() 102 # weight_field = ("CellMass")).save() 103 #s.show()--> 104 s.save('temp_data/') 105 #""" 106 /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_container.pyc in newfunc(args, **kwargs) 76 # it is the responsibility of _setup_plots to 77 # call args[0].run_callbacks()---> 78 args[0]._setup_plots() 79 rv = f(args, **kwargs) 80 return rv /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_window.pyc in _setup_plots(self) 954 955 self._set_font_properties()--> 956 self.run_callbacks() 957 self._plot_valid = True 958 /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_window.pyc in run_callbacks(self) 1007 callback(cbw) 1008 except YTDataTypeUnsupported as e:-> 1009 six.reraise(YTDataTypeUnsupported, e) 1010 except Exception as e: 1011 six.reraise(YTPlotCallbackError, /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/six.pyc in reraise(tp, value, tb) YTDataTypeUnsupported: This operation is not supported for data of geometry cylindrical; It supports data of geometries ('cartesian', 'spectral_cube')
Hi Rahul,
Can you send us what script you tried to run? Slice plots are supported but a lot of plot annotations currently are not.
Best,
John
On Jan 28, 2017, at 2:27 PM, rahul kashyap rahulkashyap411@gmail.com wrote:
Dear yt users,
I have a 3D cylindrical data set in FLASH. Has anyone tried visualizing them?
I found ATHENA is supported but, I didn't find anything for FLASH. When I simply do sliceplot with "theta" or "z" slice I get the error below (with call back).
Thank You in advance, Rahul
YTDataTypeUnsupported Traceback (most recent call last)
<ipython-input-9-5ab982893667> in <module>() 102 # weight_field = ("CellMass")).save() 103 #s.show() --> 104 s.save('temp_data/') 105 #""" 106
/home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_container.pyc in newfunc(args, **kwargs) 76 # it is the responsibility of _setup_plots to 77 # call args[0].run_callbacks() ---> 78 args[0]._setup_plots() 79 rv = f(args, **kwargs) 80 return rv
/home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_window.pyc in _setup_plots(self) 954 955 self._set_font_properties() --> 956 self.run_callbacks() 957 self._plot_valid = True 958
/home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_window.pyc in run_callbacks(self) 1007 callback(cbw) 1008 except YTDataTypeUnsupported as e: -> 1009 six.reraise(YTDataTypeUnsupported, e) 1010 except Exception as e: 1011 six.reraise(YTPlotCallbackError,
/home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/six.pyc in reraise(tp, value, tb)
YTDataTypeUnsupported: This operation is not supported for data of geometry cylindrical; It supports data of geometries ('cartesian', 'spectral_cube')
yt-users mailing list yt-users@lists.spacepope.org http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org
We do support FLASH data in cylindrical coordinates, however some functionality is currently not implemented yet for datasets in curvilinear geometries.
It looks like you're trying to use a plot callback (e.g. one of the plot modifying functions, with a name like plot.annotate_something) that doesn't support cylindrical geometries.
Which one are you using? Most of the plot callbacks could support curvilinear geometries, but no one has implemented it yet.
Nathan
On Sat, Jan 28, 2017 at 1:27 PM rahul kashyap rahulkashyap411@gmail.com wrote:
>
Dear yt users,
I have a 3D cylindrical data set in FLASH. Has anyone tried visualizing them?
I found ATHENA is supported but, I didn't find anything for FLASH. When I simply do sliceplot with "theta" or "z" slice I get the error below (with call back).
Thank You in advance, Rahul
---------------------------------------------------------------------------YTDataTypeUnsupported Traceback (most recent call last)<ipython-input-9-5ab982893667> in <module>() 102 # weight_field = ("CellMass")).save() 103 #s.show()--> 104 s.save('temp_data/') 105 #""" 106 /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_container.pyc in newfunc(args, **kwargs) 76 # it is the responsibility of _setup_plots to 77 # call args[0].run_callbacks()---> 78 args[0]._setup_plots() 79 rv = f(args, **kwargs) 80 return rv /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_window.pyc in _setup_plots(self) 954 955 self._set_font_properties()--> 956 self.run_callbacks() 957 self._plot_valid = True 958 /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/yt/visualization/plot_window.pyc in run_callbacks(self) 1007 callback(cbw) 1008 except YTDataTypeUnsupported as e:-> 1009 six.reraise(YTDataTypeUnsupported, e) 1010 except Exception as e: 1011 six.reraise(YTPlotCallbackError, /home/rkashyap/sw/miniconda2/lib/python2.7/site-packages/six.pyc in reraise(tp, value, tb) YTDataTypeUnsupported: This operation is not supported for data of geometry cylindrical; It supports data of geometries ('cartesian', 'spectral_cube')
yt-users mailing list yt-users@lists.spacepope.org http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org