Package SatStress :: Module SatStress :: Class LoveNum
[frames] | no frames]

Class LoveNum

source code

object --+
         |
        LoveNum

A container class for the complex Love numbers: h2, k2, and l2.

Instance Methods
 
__init__(self, h2_real, h2_imag, k2_real, k2_imag, l2_real, l2_imag)
Using the real and imaginary parts, create complex values.
source code
 
__str__(self)
Return a human readable string representation of the Love numbers
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Instance Variables
complex h2
the degree 2 complex, frequency dependent Love number h.
complex k2
the degree 2 complex, frequency dependent Love number k.
complex l2
the degree 2 complex, frequency dependent Love number l.
Properties

Inherited from object: __class__

Method Details

__init__(self, h2_real, h2_imag, k2_real, k2_imag, l2_real, l2_imag)
(Constructor)

source code 

Using the real and imaginary parts, create complex values.

Overrides: object.__init__

__str__(self)
(Informal representation operator)

source code 

Return a human readable string representation of the Love numbers

Overrides: object.__str__