Source code for tespy.components.basics.source
# -*- coding: utf-8
"""Module for class Source.
This file is part of project TESPy (github.com/oemof/tespy). It's copyrighted
by the contributors recorded in the version control history of the file,
available from its original location tespy/components/basics/source.py
SPDX-License-Identifier: MIT
"""
import numpy as np
from tespy.components.component import Component
from tespy.components.component import component_registry
from tespy.tools.data_containers import SimpleDataContainer as dc_simple
[docs]
@component_registry
class Source(Component):
r"""
A flow originates from a Source.
Parameters
----------
label : str
The label of the component.
design : list
List containing design parameters (stated as String).
offdesign : list
List containing offdesign parameters (stated as String).
design_path : str
Path to the components design case.
local_offdesign : boolean
Treat this component in offdesign mode in a design calculation.
local_design : boolean
Treat this component in design mode in an offdesign calculation.
char_warnings : boolean
Ignore warnings on default characteristics usage for this component.
printout : boolean
Include this component in the network's results printout.
Example
-------
Create a source and specify a label.
>>> from tespy.components import Source
>>> so = Source('a labeled source')
>>> so.label
'a labeled source'
"""
[docs]
@staticmethod
def outlets():
return ['out1']
[docs]
@staticmethod
def get_mandatory_constraints():
return {}
[docs]
def start_fluid_wrapper_branch(self):
outconn = self.outl[0]
branch = {
"connections": [outconn],
"components": [self]
}
outconn.target.propagate_wrapper_to_target(branch)
return {outconn.label: branch}