netsse 2.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- netsse-2.0.0/.gitignore +159 -0
- netsse-2.0.0/.readthedocs.yaml +35 -0
- netsse-2.0.0/LICENCE.md +674 -0
- netsse-2.0.0/PKG-INFO +744 -0
- netsse-2.0.0/README.md +45 -0
- netsse-2.0.0/docs/Makefile.txt +20 -0
- netsse-2.0.0/docs/_static/DTU_Red.png +0 -0
- netsse-2.0.0/docs/_static/DTU_Red.svg +9 -0
- netsse-2.0.0/docs/_static/NetSSE_2_logo_bare-01.png +0 -0
- netsse-2.0.0/docs/_static/NetSSE_2_logo_bare-02.png +0 -0
- netsse-2.0.0/docs/_static/NetSSE_2_logo_bare-03.png +0 -0
- netsse-2.0.0/docs/_static/NetSSE_2_logo_bare-04.png +0 -0
- netsse-2.0.0/docs/_static/css/custom.css +20 -0
- netsse-2.0.0/docs/_static/pypi-icon.js +16 -0
- netsse-2.0.0/docs/_templates/version.html +2 -0
- netsse-2.0.0/docs/conf.py +140 -0
- netsse-2.0.0/docs/examples/example1.ipynb +107 -0
- netsse-2.0.0/docs/examples/example_network.ipynb +145 -0
- netsse-2.0.0/docs/examples/index.rst +20 -0
- netsse-2.0.0/docs/index.rst +88 -0
- netsse-2.0.0/docs/make.bat +35 -0
- netsse-2.0.0/docs/project/citing.rst +71 -0
- netsse-2.0.0/docs/project/contact.rst +25 -0
- netsse-2.0.0/docs/project/index.rst +55 -0
- netsse-2.0.0/docs/project/license.rst +15 -0
- netsse-2.0.0/docs/project/publications.rst +38 -0
- netsse-2.0.0/docs/project/team.rst +42 -0
- netsse-2.0.0/docs/releases/index.rst +23 -0
- netsse-2.0.0/docs/requirements.txt +11 -0
- netsse-2.0.0/docs/user_guide/future_work.rst +21 -0
- netsse-2.0.0/docs/user_guide/glossary.rst +48 -0
- netsse-2.0.0/docs/user_guide/index.rst +14 -0
- netsse-2.0.0/docs/user_guide/install.rst +35 -0
- netsse-2.0.0/docs/user_guide/intro.rst +57 -0
- netsse-2.0.0/docs/user_guide/usage.rst +18 -0
- netsse-2.0.0/netsse.plantuml +283 -0
- netsse-2.0.0/pyproject.toml +39 -0
- netsse-2.0.0/src/netsse/__init__.py +42 -0
- netsse-2.0.0/src/netsse/analys/__init__.py +34 -0
- netsse-2.0.0/src/netsse/analys/buoy.py +338 -0
- netsse-2.0.0/src/netsse/analys/emep.py +533 -0
- netsse-2.0.0/src/netsse/analys/enc_spec.py +342 -0
- netsse-2.0.0/src/netsse/analys/sawb.py +469 -0
- netsse-2.0.0/src/netsse/analys/spec.py +487 -0
- netsse-2.0.0/src/netsse/base.py +810 -0
- netsse-2.0.0/src/netsse/model/__init__.py +34 -0
- netsse-2.0.0/src/netsse/model/ship.py +341 -0
- netsse-2.0.0/src/netsse/simul/__init__.py +35 -0
- netsse-2.0.0/src/netsse/simul/ship_resp.py +390 -0
- netsse-2.0.0/src/netsse/tools/__init__.py +35 -0
- netsse-2.0.0/src/netsse/tools/envir_cond.py +203 -0
- netsse-2.0.0/src/netsse/tools/misc_func.py +649 -0
netsse-2.0.0/.gitignore
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
|
|
2
|
+
# Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
|
|
3
|
+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks
|
|
4
|
+
|
|
5
|
+
### JupyterNotebooks ###
|
|
6
|
+
# gitignore template for Jupyter Notebooks
|
|
7
|
+
# website: http://jupyter.org/
|
|
8
|
+
|
|
9
|
+
.ipynb_checkpoints
|
|
10
|
+
*/.ipynb_checkpoints/*
|
|
11
|
+
|
|
12
|
+
# IPython
|
|
13
|
+
profile_default/
|
|
14
|
+
ipython_config.py
|
|
15
|
+
|
|
16
|
+
# Remove previous ipynb_checkpoints
|
|
17
|
+
# git rm -r .ipynb_checkpoints/
|
|
18
|
+
|
|
19
|
+
### Python ###
|
|
20
|
+
# Byte-compiled / optimized / DLL files
|
|
21
|
+
__pycache__/
|
|
22
|
+
*.py[cod]
|
|
23
|
+
*$py.class
|
|
24
|
+
|
|
25
|
+
# C extensions
|
|
26
|
+
*.so
|
|
27
|
+
|
|
28
|
+
# Distribution / packaging
|
|
29
|
+
.Python
|
|
30
|
+
build/
|
|
31
|
+
develop-eggs/
|
|
32
|
+
dist/
|
|
33
|
+
downloads/
|
|
34
|
+
eggs/
|
|
35
|
+
.eggs/
|
|
36
|
+
lib/
|
|
37
|
+
lib64/
|
|
38
|
+
parts/
|
|
39
|
+
sdist/
|
|
40
|
+
var/
|
|
41
|
+
wheels/
|
|
42
|
+
share/python-wheels/
|
|
43
|
+
*.egg-info/
|
|
44
|
+
.installed.cfg
|
|
45
|
+
*.egg
|
|
46
|
+
MANIFEST
|
|
47
|
+
|
|
48
|
+
# PyInstaller
|
|
49
|
+
# Usually these files are written by a python script from a template
|
|
50
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
51
|
+
*.manifest
|
|
52
|
+
*.spec
|
|
53
|
+
|
|
54
|
+
# Installer logs
|
|
55
|
+
pip-log.txt
|
|
56
|
+
pip-delete-this-directory.txt
|
|
57
|
+
|
|
58
|
+
# Unit test / coverage reports
|
|
59
|
+
htmlcov/
|
|
60
|
+
.tox/
|
|
61
|
+
.nox/
|
|
62
|
+
.coverage
|
|
63
|
+
.coverage.*
|
|
64
|
+
.cache
|
|
65
|
+
nosetests.xml
|
|
66
|
+
coverage.xml
|
|
67
|
+
*.cover
|
|
68
|
+
*.py,cover
|
|
69
|
+
.hypothesis/
|
|
70
|
+
.pytest_cache/
|
|
71
|
+
cover/
|
|
72
|
+
|
|
73
|
+
# Translations
|
|
74
|
+
*.mo
|
|
75
|
+
*.pot
|
|
76
|
+
|
|
77
|
+
# Django stuff:
|
|
78
|
+
*.log
|
|
79
|
+
local_settings.py
|
|
80
|
+
db.sqlite3
|
|
81
|
+
db.sqlite3-journal
|
|
82
|
+
|
|
83
|
+
# Flask stuff:
|
|
84
|
+
instance/
|
|
85
|
+
.webassets-cache
|
|
86
|
+
|
|
87
|
+
# Scrapy stuff:
|
|
88
|
+
.scrapy
|
|
89
|
+
|
|
90
|
+
# Sphinx documentation
|
|
91
|
+
docs/_build/
|
|
92
|
+
|
|
93
|
+
# PyBuilder
|
|
94
|
+
.pybuilder/
|
|
95
|
+
target/
|
|
96
|
+
|
|
97
|
+
# Jupyter Notebook
|
|
98
|
+
|
|
99
|
+
# IPython
|
|
100
|
+
|
|
101
|
+
# pyenv
|
|
102
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
103
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
104
|
+
# .python-version
|
|
105
|
+
|
|
106
|
+
# pipenv
|
|
107
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
108
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
109
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
110
|
+
# install all needed dependencies.
|
|
111
|
+
#Pipfile.lock
|
|
112
|
+
|
|
113
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
114
|
+
__pypackages__/
|
|
115
|
+
|
|
116
|
+
# Celery stuff
|
|
117
|
+
celerybeat-schedule
|
|
118
|
+
celerybeat.pid
|
|
119
|
+
|
|
120
|
+
# SageMath parsed files
|
|
121
|
+
*.sage.py
|
|
122
|
+
|
|
123
|
+
# Environments
|
|
124
|
+
.env
|
|
125
|
+
.venv
|
|
126
|
+
env/
|
|
127
|
+
venv/
|
|
128
|
+
ENV/
|
|
129
|
+
env.bak/
|
|
130
|
+
venv.bak/
|
|
131
|
+
|
|
132
|
+
# Spyder project settings
|
|
133
|
+
.spyderproject
|
|
134
|
+
.spyproject
|
|
135
|
+
|
|
136
|
+
# Visual Studio Code project settings
|
|
137
|
+
.vscode
|
|
138
|
+
|
|
139
|
+
# Rope project settings
|
|
140
|
+
.ropeproject
|
|
141
|
+
|
|
142
|
+
# mkdocs documentation
|
|
143
|
+
/site
|
|
144
|
+
|
|
145
|
+
# mypy
|
|
146
|
+
.mypy_cache/
|
|
147
|
+
.dmypy.json
|
|
148
|
+
dmypy.json
|
|
149
|
+
|
|
150
|
+
# Pyre type checker
|
|
151
|
+
.pyre/
|
|
152
|
+
|
|
153
|
+
# pytype static type analyzer
|
|
154
|
+
.pytype/
|
|
155
|
+
|
|
156
|
+
# Cython debug symbols
|
|
157
|
+
cython_debug/
|
|
158
|
+
|
|
159
|
+
# End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Read the Docs configuration file for Sphinx projects
|
|
2
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
3
|
+
|
|
4
|
+
# Required
|
|
5
|
+
version: 2
|
|
6
|
+
|
|
7
|
+
# Set the OS, Python version and other tools you might need
|
|
8
|
+
build:
|
|
9
|
+
os: ubuntu-22.04
|
|
10
|
+
tools:
|
|
11
|
+
python: "3.12"
|
|
12
|
+
apt_packages:
|
|
13
|
+
- graphviz
|
|
14
|
+
|
|
15
|
+
# Build documentation in the "docs/" directory with Sphinx
|
|
16
|
+
sphinx:
|
|
17
|
+
configuration: docs/conf.py
|
|
18
|
+
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
|
|
19
|
+
# builder: "dirhtml"
|
|
20
|
+
# Fail on all warnings to avoid broken references
|
|
21
|
+
# fail_on_warning: true
|
|
22
|
+
|
|
23
|
+
# Build all formats
|
|
24
|
+
formats: all
|
|
25
|
+
|
|
26
|
+
# Optional but recommended, declare the Python requirements required
|
|
27
|
+
# to build your documentation
|
|
28
|
+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
29
|
+
python:
|
|
30
|
+
install:
|
|
31
|
+
- requirements: docs/requirements.txt
|
|
32
|
+
- method: pip
|
|
33
|
+
path: .
|
|
34
|
+
# extra_requirements:
|
|
35
|
+
# - docs
|