Exemplo n.º 1
0
    def addgauges(current_data):
        from pyclaw.plotters import gaugetools

        gaugetools.plot_gauge_locations(
            current_data.plotdata, gaugenos="all", format_string="ko", add_labels=True, fontsize=8
        )
Exemplo n.º 2
0
 def addgauges(current_data):
     from pyclaw.plotters import gaugetools
     gaugetools.plot_gauge_locations(current_data.plotdata, \
          gaugenos='all', format_string='ko', add_labels=True)
Exemplo n.º 3
0
 def gauge_locations(current_data,gaugenos='all'):
     from pyclaw.plotters import gaugetools
     plt.hold(True)
     gaugetools.plot_gauge_locations(current_data.plotdata, \
          gaugenos=gaugenos, format_string='kx', add_labels=True)
     plt.hold(False)
Exemplo n.º 4
0
 def addgauges(current_data,fnt=14):
     from pyclaw.plotters import gaugetools
     gaugetools.plot_gauge_locations(current_data.plotdata, \
             gaugenos=[], format_string='ko', add_labels=True,markersize=8,fontsize=fnt)
Exemplo n.º 5
0
 def gauge_locations(current_data, gaugenos='all'):
     from pyclaw.plotters import gaugetools
     plt.hold(True)
     gaugetools.plot_gauge_locations(current_data.plotdata, \
          gaugenos=gaugenos, format_string='kx', add_labels=True)
     plt.hold(False)
Exemplo n.º 6
0
 def addgauges(current_data, fnt=14):
     from pyclaw.plotters import gaugetools
     gaugetools.plot_gauge_locations(current_data.plotdata, \
             gaugenos=[1,2], format_string='ko', add_labels=True,markersize=8,fontsize=fnt)