Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
# Copyright (c) 2020 by Fraunhofer Institute for Energy Economics
|
|
2 |
# and Energy System Technology (IEE), Kassel. All rights reserved.
|
|
3 |
# Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
4 |
|
|
5 | 1 |
__version__ = '0.2.0' |
6 |
|
|
7 | 1 |
import pandas as pd |
8 | 1 |
import os |
9 |
|
|
10 | 1 |
pd.options.mode.chained_assignment = None # default='warn' |
11 | 1 |
pp_dir = os.path.dirname(os.path.realpath(__file__)) |
12 |
|
|
13 | 1 |
from pandapipes.properties.fluids import * |
14 | 1 |
from pandapipes.create import * |
15 | 1 |
from pandapipes.io.file_io import * |
16 | 1 |
from pandapipes.pipeflow import * |
17 | 1 |
from pandapipes.toolbox import * |
18 | 1 |
from pandapipes.pipeflow_setup import * |
19 | 1 |
from pandapipes.std_types import * |
Read our documentation on viewing source code .