Source code for climlab.process.diagnostic
from .time_dependent_process import TimeDependentProcess
[docs]
class DiagnosticProcess(TimeDependentProcess):
r"""A parent class for all processes that are strictly diagnostic,
namely that do **not** contribute directly to tendencies of state variables.
During initialization following attribute is set:
:ivar time_type: is set to ``'diagnostic'``
:vartype time_type: str
"""
def __init__(self, **kwargs):
super(DiagnosticProcess, self).__init__(**kwargs)
self.time_type = 'diagnostic'