コード例 #1
0
ファイル: planarPotential.py プロジェクト: rokroskar/galpy
    def plotEscapecurve(self,*args,**kwargs):
        """
        NAME:

           plotEscapecurve

        PURPOSE:

           plot the escape velocity curve for this potential

        INPUT:

           Rrange - range

           grid - number of points to plot

           savefilename - save to or restore from this savefile (pickle)

           +bovy_plot(*args,**kwargs)

        OUTPUT:

           plot to output device

        HISTORY:

           2010-07-13 - Written - Bovy (NYU)

        """
        plotEscapecurve(self,*args,**kwargs)
コード例 #2
0
ファイル: Potential.py プロジェクト: rokroskar/galpy
    def plotEscapecurve(self,*args,**kwargs):
        """
        NAME:

           plotEscapecurve

        PURPOSE:

           plot the escape velocity  curve for this potential 
           (in the z=0 plane for non-spherical potentials)

        INPUT:

           Rrange - range

           grid - number of points to plot

           savefilename - save to or restore from this savefile (pickle)

           +bovy_plot(*args,**kwargs)

        OUTPUT:

           plot to output device

        HISTORY:

           2010-08-08 - Written - Bovy (NYU)

        """
        plotEscapecurve(self.toPlanar(),*args,**kwargs)
コード例 #3
0
ファイル: planarPotential.py プロジェクト: ritabanc/galpy
 def plotEscapecurve(self, *args, **kwargs):
     """
     NAME:
        plotEscapecurve
     PURPOSE:
        plot the escape velocity curve for this potential
     INPUT:
        Rrange - range
        grid - number of points to plot
        savefilename - save to or restore from this savefile (pickle)
        +bovy_plot(*args,**kwargs)
     OUTPUT:
        plot to output device
     HISTORY:
        2010-07-13 - Written - Bovy (NYU)
     """
     plotEscapecurve(self, *args, **kwargs)
コード例 #4
0
ファイル: Potential.py プロジェクト: ritabanc/galpy
 def plotEscapecurve(self, *args, **kwargs):
     """
     NAME:
        plotEscapecurve
     PURPOSE:
        plot the escape velocity  curve for this potential 
        (in the z=0 plane for non-spherical potentials)
     INPUT:
        Rrange - range
        grid - number of points to plot
        savefilename - save to or restore from this savefile (pickle)
        +bovy_plot(*args,**kwargs)
     OUTPUT:
        plot to output device
     HISTORY:
        2010-08-08 - Written - Bovy (NYU)
     """
     plotEscapecurve(self.toPlanar(), *args, **kwargs)