Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

dnv-hydrod

dnv-hydrod is a Python library that provides seamless integration with DNV HydroD through pythonnet, enabling programmatic access to HydroD workspace files (.hydx) and modeling APIs.

This library automatically locates your HydroD installation, loads required .NET assemblies, and provides a Pythonic interface for workspace operations, analysis execution, and concept manipulation.

Requirements:

  • DNV HydroD 9.0 and higher (must be installed on the system)

  • A supported Python version as declared by the package metadata (requires-python)

  • A matching .NET Desktop Runtime, installed globally (system-wide):

    The self-contained .NET runtime shipped inside HydroD's installation folder cannot be used by this package: hosting CoreCLR from there loads HydroD's bundled Python.Runtime.dll (3.0.5) instead of the pip-installed copy, which then crashes in Python.Runtime.ModuleObject.tp_setattro the first time HydroD's scripting service registers a .NET namespace. If the matching global .NET Desktop Runtime is missing, dnv-hydrod raises a clear RuntimeError on import with a download link.

Installation

Installing from PyPI (when published):

pip install dnv-hydrod

Quick Start

from dnv.hydrod import *

# Open existing workspace with license keys
with WorkspaceSession(
    r"C:\Projects\myworkspace.hydx",
    license_keys=['WIND']
) as session:
    # Access workspace concepts
    analyses = FindConcept("/Workspace/Analyses")
    
    # Create and execute custom analysis
    ca = CustomAnalysis(analyses, "MyAnalysis")
    ca.InlineScript = """
import time
print('Starting analysis...')
time.sleep(2)
print('Analysis completed!')
"""
    ca.Execute()

Key Features

  • Automatic HydroD Detection: Uses DNV Application Version Manager to locate HydroD installation
  • Context Manager Support: Safe workspace handling with automatic cleanup
  • Pythonic API: Clean, intuitive interface for HydroD operations
  • Embedded Modules: Access to Python utilities embedded in HydroD .NET assemblies

Documentation

This library provides Python bindings to HydroD's .NET API. For comprehensive information about available classes, methods, workflows, and HydroD concepts, please refer to the HydroD Documentation and API reference included with your HydroD installation.

Usage Examples

Creating a New Workspace

from dnv.hydrod import *

# Create new workspace with license keys
with WorkspaceSession(
    r"C:\Projects",
    "NewWorkspace",
    license_keys=['WIND']
) as session:
    # Workspace is automatically saved as NewWorkspace.hydx
    print("Workspace created successfully!")

Working with Concepts

from dnv.hydrod import *

with WorkspaceSession(
    r"C:\Projects\myworkspace.hydx",
    license_keys=['WIND']
) as session:
    # Find concepts using path
    load_cases_table = FindConcept("/Workspace/Analyses/DesignLoadCasesTable1")

    # Create new DesignLoadCase entry
    udlc1 = DesignLoadCase()
    udlc1.Selected=True
    udlc1.Name="DLC_new"
    udlc1.SimaBladedFolder="Inputs\\Sima_ULS_Hs11_Deg90_Vw23"
    udlc1.SimaBladedFileName="sima"
    udlc1.EnvironmentalLoadFactor=0.8
    udlc1.PermanentLoadFactor=0.8
    udlc1.StartTime=300
    udlc1.StopTime=340

    # Add new DesignLoadCase entry to "UlsDesignLoadCases1" concept
    load_cases_table.DesignLoadCases.Add(udlc1)

Generate Runs and run ULS workflow through Python

from dnv.hydrod import *

with WorkspaceSession(
    r"C:\Projects\myworkspace.hydx",
    license_keys=['WIND']
) as session:
    runFolder = FindConcept("/Workspace/Analyses/Workflow1/Runs")
    # If the run folder already exists, delete it to remove previous results
    if (runFolder):
        Delete(runFolder)

    workflow = FindConcept("/Workspace/Analyses/Workflow1")
    workflow.GenerateRuns()
    workflow.Execute()

Architecture

  • load_assemblies.py: Initializes .NET runtime, locates HydroD, loads assemblies
  • workspace_utils.py: Provides WorkspaceSession and utility functions
  • Embedded modules: Python code extracted from HydroD .NET assemblies at runtime

Limitations

  • HydroD must be installed on the system

License

This project is licensed under the MIT License. See the LICENSE file in the package directory for full license text.

Support

For issues, questions, or feedback, please contact DNV software support at software.support@dnv.com.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dnv_hydrod-1.0.3rc70.tar.gz (61.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dnv_hydrod-1.0.3rc70-py3-none-any.whl (65.6 kB view details)

Uploaded Python 3

File details

Details for the file dnv_hydrod-1.0.3rc70.tar.gz.

File metadata

  • Download URL: dnv_hydrod-1.0.3rc70.tar.gz
  • Upload date:
  • Size: 61.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for dnv_hydrod-1.0.3rc70.tar.gz
Algorithm Hash digest
SHA256 58b7c8259c68a61150bd4429c96babf5c1edaac291e9b1597c5b25f38cd17f03
MD5 1284d348a6c8121e3fadfa0c50b8827b
BLAKE2b-256 40543de988ee6861dbb5fb2b4896fb0fe8008c5bb7cddfb08c7b2f4a6d82884a

See more details on using hashes here.

File details

Details for the file dnv_hydrod-1.0.3rc70-py3-none-any.whl.

File metadata

  • Download URL: dnv_hydrod-1.0.3rc70-py3-none-any.whl
  • Upload date:
  • Size: 65.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for dnv_hydrod-1.0.3rc70-py3-none-any.whl
Algorithm Hash digest
SHA256 e671c958c9fcf2a8091fb7b0bfbc8df4fa62275265264275f0b04fc199195ae1
MD5 8169f6c1265b0ebe533342cb00227abb
BLAKE2b-256 1d5ce4c98c34ecb465a5ca55715e465165802026ec021cca65c43891ab341708

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.3rc70 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page