Last updated on Jul 14, 2026.

Source code for netsse.config

"""**Configuration settings** for the NetSSE package.

.. dropdown:: Copyright (C) 2023-2026 Technical University of Denmark, R.E.G. Mounet
    :color: primary
    :icon: law

    *This code is part of the NetSSE software.*

    NetSSE is free software: you can redistribute it and/or modify it under
    the terms of the GNU General Public License as published by the Free
    Software Foundation, either version 3 of the License, or (at your
    option) any later version.

    NetSSE is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    for more details.

    You should have received a copy of the GNU General Public License along
    with this program.  If not, see https://www.gnu.org/licenses/.

    To credit the author, users are encouraged to use below reference:

    .. code-block:: text

        Mounet, R. E. G., & Nielsen, U. D. NetSSE: An open-source Python package
        for network-based sea state estimation from ships, buoys, and other
        observation platforms (version 2.3). Technical University of Denmark,
        GitLab. July 2026. https://doi.org/10.11583/DTU.26379811.

*Last updated on 05-06-2026 by R.E.G. Mounet*

"""

from .constants import DEFAULT_GRAVITY, DEFAULT_SEAWATER_DENSITY

[docs] class Config:
[docs] gravity = DEFAULT_GRAVITY
[docs] rho = DEFAULT_SEAWATER_DENSITY
[docs] config = Config()