Skip to main content

KRATOS Multiphysics ("Kratos") is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.

Project description

CoSimulation Application

The CoSimulation Application contains the core developments in coupling black-box solvers and other software-tools within Kratos Multiphysics.

Overview

List of features

Dependencies

The CoSimulation Application itself doesn't have any dependencies (except the KratosCore / KratosMPICore for serial/MPI-compilation).

For running coupled simulations the solvers to be used have to be available. Those dependencies are python-only.

The MappingApplication is required when mapping is used.

Examples

The examples can be found in the examples repository. Please also refer to the tests for examples of how the coupling can be configured. Especially the Mok-FSI and the Wall-FSI tests are very suitable for getting a basic understanding.

User Guide

This section guides users of the CoSimulationApplication to setting up and performing coupled simulations. The overall workflow is the same as what is used for most Kratos applications. It consists of the following files:

  • MainKratosCoSim.py This file is to be executed with python to run the coupled simulation
  • ProjectParametersCoSim.json This file contains the configuration for the coupled simulation

Setting up a coupled simulation

For running a coulpled simulation at least the two files above are required. In addition, the input for the solvers / codes participating in the coupled simulation are necessary.

The MainKratosCoSim.py file looks like this (see also here:

import KratosMultiphysics as KM
from KratosMultiphysics.CoSimulationApplication.co_simulation_analysis import CoSimulationAnalysis

"""
For user-scripting it is intended that a new class is derived
from CoSimulationAnalysis to do modifications
Check also "kratos/python_scripts/analysis-stage.py" for available methods that can be overridden
"""

parameter_file_name = "ProjectParametersCoSim.json"
with open(parameter_file_name,'r') as parameter_file:
    parameters = KM.Parameters(parameter_file.read())

simulation = CoSimulationAnalysis(parameters)
simulation.Run()

It can be executed with python:

python MainKratosCoSim.py

If the coupled simulation runs in a distributed environment (MPI) then MPI is required to launch the script

mpiexec -np 4 python MainKratosCoSim.py --using-mpi

Not the passing of the --using-mpi flag which tells Kratos that it runs in MPI.

The JSON configuration file

The configuration of the coupled simulation is written in json format, same as for the rest of Kratos.

It contains two settings:

  • problem_data: this setting contains global settings of the coupled problem.

    "start_time" : 0.0,
    "end_time" : 15.0,
    "echo_level" : 0, // verbosity, higher values mean more output
    "print_colors" : true, // use colors in the prints
    "parallel_type" : "OpenMP" // or "MPI"
    
  • solver_settings: the settings of the coupled solver.

    "type" : "coupled_solvers.gauss_seidel_weak", // type of the coupled solver, see python_scripts/coupled_solvers
    "predictors" : [], // list of predictors
    "num_coupling_iterations" : 10, // max number of coupling iterations, only available for strongly coupled solvers
    "convergence_accelerators" : [] // list of convergence accelerators, only available for strongly coupled solvers
    "convergence_criteria" : [] // list of convergence criteria, only available for strongly coupled solvers
    "data_transfer_operators" : {} // map of data transfer operators (e.g. mapping)
    "coupling_sequence" : [] // list specifying in which order the solvers are called
    "solvers" : {} // map of solvers participating in the coupled simulation, specifying their input and interfaces
    

See the next section for a basic example with more explanations.

Basic FSI example

This example is the Wall FSI benchmark, see [1], chapter 7.5.3. The Kratos solvers are used to solve this problem. The input files for this example can be found here

{
    "problem_data" :
    {
        "start_time" : 0.0,
        "end_time" : 3.0,
        "echo_level" : 0, // printing no additional output
        "print_colors" : true, // using colors for prints
        "parallel_type" : "OpenMP"
    },
    "solver_settings" :
    {
        "type" : "coupled_solvers.gauss_seidel_weak", // weakly coupled simulation, no interface convergence is checked
        "echo_level" : 0, // no additional output from the coupled solver
        "predictors" : [ // using a predictor to improve the stability of the simulation
            {
                "type" : "average_value_based",
                "solver"         : "fluid",
                "data_name"      : "load"
            }
        ],
        "data_transfer_operators" : {
            "mapper" : {
                "type" : "kratos_mapping",
                "mapper_settings" : {
                    "mapper_type" : "nearest_neighbor" // using a simple mapper, see the README in the MappingApplications
                }
            }
        },
        "coupling_sequence":
        [
        {
            "name": "structure", // the structural solver comes first
            "input_data_list": [ // before solving, the following data is imported in the structural solver
                {
                    "data"              : "load",
                    "from_solver"       : "fluid",
                    "from_solver_data"  : "load", // the fluid loads are mapped onto the structure
                    "data_transfer_operator" : "mapper", // using the mapper defined above (nearest neighbor)
                    "data_transfer_operator_options" : ["swap_sign"] // in Kratos, the loads have the opposite sign, hence it has to be swapped
                }
            ],
            "output_data_list": [ // after solving, the displacements are mapped to the fluid solver
                {
                    "data"           : "disp",
                    "to_solver"      : "fluid",
                    "to_solver_data" : "disp",
                    "data_transfer_operator" : "mapper"
                }
            ]
        },
        {
            "name": "fluid", // the fluid solver solves after the structure
            "output_data_list": [],
            "input_data_list": []
        }
        ],
        "solvers" : // here we specify the solvers, their input and interfaces for CoSimulation
        {
            "fluid":
            {
                "type" : "solver_wrappers.kratos.fluid_dynamics_wrapper", // using the Kratos FluidDynamicsApplication for the fluid
                "solver_wrapper_settings" : {
                    "input_file"  : "fsi_wall/ProjectParametersCFD" // input file for the fluid solver
                },
                "data" : { // definition of interfaces used in the simulation
                    "disp" : {
                        "model_part_name" : "FluidModelPart.NoSlip2D_FSI_Interface",
                        "variable_name" : "MESH_DISPLACEMENT",
                        "dimension" : 2
                    },
                    "load" : {
                        "model_part_name" : "FluidModelPart.NoSlip2D_FSI_Interface",
                        "variable_name" : "REACTION",
                        "dimension" : 2
                    }
                }
            },
            "structure" :
            {
                "type" : "solver_wrappers.kratos.structural_mechanics_wrapper", // using the Kratos StructuralMechanicsApplication for the structure
                "solver_wrapper_settings" : {
                    "input_file"  : "fsi_wall/ProjectParametersCSM" // input file for the structural solver
                },
                "data" : { // definition of interfaces used in the simulation
                    "disp" : {
                        "model_part_name" : "Structure.GENERIC_FSI_Interface",
                        "variable_name" : "DISPLACEMENT",
                        "dimension" : 2
                    },
                    "load" : {
                        "model_part_name" : "Structure.GENERIC_FSI_Interface",
                        "variable_name" : "POINT_LOAD",
                        "dimension" : 2
                    }
                }
            }
        }
    }
}

Developer Guide

Structure of the Application

The CoSimulationApplication consists of the following main components (taken from [2]):

  • SolverWrapper: Baseclass and CoSimulationApplication-interface for all solvers/codes participating in the coupled simulation, each solver/code has its own specific version.
  • CoupledSolver: Implements coupling schemes such as weak/strong coupling with Gauss-Seidel/Jacobi pattern. It derives from SolverWrapper such that it can beused in nested coupled simulations.
  • IO: Responsible for communicating and data exchange with external solvers/codes
  • DataTransferOperator: Transfers data from one discretization to another, e.g. by use of mapping techniques
  • CouplingOperation: Tool for customizing coupled simulations
  • ConvergenceAccelerator: Accelerating the solution in strongly coupled simulations by use of relaxation or Quasi-Newton techniques
  • ConvergenceCriteria: Checks if convergence is achieved in a strongly coupled simulation.
  • Predictor: Improves the convergence by using a prediction as initial guess for the coupled solution

The following UML diagram shows the relation between these components:

Besides the functionalities listed above, the modular design of the application makes it straightforward to add a new or customized version of e.g. a ConvergenceAccelerator. It is not necessary to have those custom python scripts inside the CoSimulationApplication, it is sufficient that they are in a directory that is included in the PYTHONPATH (e.g. the working directory).

How to couple a new solver / software-tool?

The CoSimulationApplication is very modular and designed to be extended to coupling of more solvers / software-tools. This requires basically two components on the Kratos side:

The interface between the CoSimulationApplication and a solver is done with the SolverWrapper. This wrapper is specific to every solver and calls the solver-custom methods based on the input of CoSimulation.

The second component necessary is an IO. This component is used by the SolverWrapper and is responsible for the exchange of data (e.g. mesh, field-quantities, geometry etc) between the solver and the CoSimulationApplication.

In principle three different options are possible for exchanging data with CoSimulation:

  • For very simple solvers IO can directly be done in python inside the SolverWrapper, which makes a separate IO superfluous (see e.g. a python-only single degree of freedom solver)
  • Using the CoSimIO. This which is the preferred way of exchanging data with the CoSimulationApplication. It is currently available for C++, C, and Python. The CoSimIO is included as the KratosCoSimIO and can be used directly. Its modular and Kratos-independent design as detached interface allows for easy integration into other codes.
  • Using a custom solution based on capabilities that are offered by the solver that is to be coupled.

The following picture shows the interaction of these components with the CoSimulationApplication and the external solver:

Interface of SolverWrapper

The SolverWrapper is the interface in the CoSimulationApplication to all involved codes / solvers. It provides the following interface (adapted from [2]), which is also called in this order:

  • Initialize: This function is called once at the beginning of the simulation, it e.g .reads the input files and prepares the internal data structures.
  • The solution loop is split into the following six functions:
    • AdvanceInTime: Advancing in time and preparing the data structure for the next time step.
    • InitializeSolutionStep: Applying boundary conditions
    • Predict: Predicting the solution of this time step to accelerate the solution.
      iterate until convergence in a strongly coupled solution:
      • SolveSolutionStep: Solving the problem for this time step. This is the only function that can be called multiple times in an iterative (strongly coupled) solution procedure.
    • FinalizeSolutionStep: Updating internals after solving this time step.
    • OutputSolutionStep: Writing output at the end of a time step
  • Finalize: Finalizing and cleaning up after the simulation

Each of these functions can implement functionalities to communicate with the external solver, telling it what to do. However, this is often skipped if the data exchange is used for the synchronization of the solvers. This is often done in "classical" coupling tools. I.e. the code to couple internally duplicates the coupling sequence and synchronizes with the coupling tool through the data exchange.

An example of a SolverWrapper coupled to an external solver using this approach can be found here. Only the mesh exchange is done explicitly at the beginning of the simulation, the data exchange is done inside SolveSolutionStep.

The coupled solver has to duplicate the coupling sequence, it would look e.g. like this (using CoSimIO) for a weak coupling:

# solver initializes ...

CoSimIO::ExportMesh(...) # send meshes to the CoSimulationApplication

# start solution loop
while time < end_time:
    CoSimIO::ImportData(...) # get interface data

    # solve the time step

    CoSimIO::ExportData(...) # send new data to the CoSimulationApplication

An example for an FSI problem where the structural solver of Kratos is used as an external solver can be found here. The CoSimIO is used for communicating between the CoSimulationApplication and the structural solver

While this approach is commonly used, it has the significant drawback that the coupling sequence has to be duplicated, which not only has the potential for bugs and deadlocks but also severely limits the useability when it comes to trying different coupling algorithms. Then not only the input for the CoSimulationApplication has to be changed but also the source code in the external solver!

Hence a better solution is proposed in the next section:

Remote controlled CoSimulation

A unique feature of Kratos CoSimulation (in combination with the CoSimIO) is the remotely controlled CoSimulation. The main difference to the "classical" approach which duplicates the coupling sequence in the external solver is to give the full control to CoSimulation. This is the most flexible approach from the point of CoSimulation, as then neither the coupling sequence nor any other coupling logic has to be duplicated in the external solver.

In this approach the external solver registers the functions necessary to perform coupled simulations through the CoSimIO. These are then called remotely through the CoSimulationApplication. This way any coupling algorithm can be used without changing anything in the external solver.

# defining functions to be registered
def SolveSolution()
{
    # external solver solves timestep
}

def ExportData()
{
    # external solver exports data to the CoSimulationApplication
}

# after defining the functions they can be registered in the CoSimIO:

CoSimIO::Register(SolveSolution)
CoSimIO::Register(ExportData)
# ...

# After all the functions are registered and the solver is fully initialized for CoSimulation, the Run method is called
CoSimIO::Run() # this function runs the coupled simulation. It returns only after finishing

A simple example of this can be found in the CoSimIO.

The SolverWrapper for this approach sends a small control signal in each of its functions to the external solver to tell it what to do. This could be implemented as the following:

class RemoteControlSolverWrapper(CoSimulationSolverWrapper):
    # ...
    # implement other methods as necessary
    # ...

    def InitializeSolutionStep(self):
        data_config = {
            "type"           : "control_signal",
            "control_signal" : "InitializeSolutionStep"
        }
        self.ExportData(data_config)

    def SolveSolutionStep(self):
        for data_name in self.settings["solver_wrapper_settings"]["export_data"].GetStringArray():
            # first tell the controlled solver to import data
            data_config = {
                "type"            : "control_signal",
                "control_signal"  : "ImportData",
                "data_identifier" : data_name
            }
            self.ExportData(data_config)

            # then export the data from Kratos
            data_config = {
                "type" : "coupling_interface_data",
                "interface_data" : self.GetInterfaceData(data_name)
            }
            self.ExportData(data_config)

        # now the external solver solves
        super().SolveSolutionStep()

        for data_name in self.settings["solver_wrapper_settings"]["import_data"].GetStringArray():
            # first tell the controlled solver to export data
            data_config = {
                "type"            : "control_signal",
                "control_signal"  : "ExportData",
                "data_identifier" : data_name
            }
            self.ExportData(data_config)

            # then import the data to Kratos
            data_config = {
                "type" : "coupling_interface_data",
                "interface_data" : self.GetInterfaceData(data_name)
            }
            self.ImportData(data_config)

A full example for this can be found here.

If it is possible for an external solver to implement this approach, it is recommended to use it as it is the most robust and flexible.

Nevertheless both approaches are possible with the CoSimulationApplication.

Using a solver in MPI

By default, each SolverWrapper makes use of all ranks in MPI. This can be changed if e.g. the solver that is wrapped by the SolverWrapper does not support MPI or to specify to use less rank.

The base SolverWrapper provides the _GetDataCommunicator function for this purpose. In the baseclass, the default DataCommunicator (which contains all ranks in MPI) is returned. The SolverWrapper will be instantiated on all the ranks on which this DataCommunicator is defined (i.e. on the ranks where data_communicator.IsDefinedOnThisRank() == True).

If a solver does not support MPI-parallelism then it can only run on one rank. In such cases it should return a DataCommunicator which contains only one rank. For this purpose the function KratosMultiphysics.CoSimulationApplication.utilities.data_communicator_utilities.GetRankZeroDataCommunicator can be used. Other custom solutions are also possible, see for example the structural_solver_wrapper.

References

  • [1] Wall, Wolfgang A., Fluid structure interaction with stabilized finite elements, PhD Thesis, University of Stuttgart, 1999, http://dx.doi.org/10.18419/opus-127
  • [2] Bucher et al., Realizing CoSimulation in and with a multiphysics framework, conference proceedings, IX International Conference on Computational Methods for Coupled Problems in Science and Engineering, 2021, https://www.scipedia.com/public/Bucher_et_al_2021a

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

kratoscosimulationapplication-10.4.2-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

kratoscosimulationapplication-10.4.2-cp314-cp314-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

kratoscosimulationapplication-10.4.2-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

kratoscosimulationapplication-10.4.2-cp313-cp313-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

kratoscosimulationapplication-10.4.2-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

kratoscosimulationapplication-10.4.2-cp312-cp312-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

kratoscosimulationapplication-10.4.2-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

kratoscosimulationapplication-10.4.2-cp311-cp311-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

kratoscosimulationapplication-10.4.2-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

kratoscosimulationapplication-10.4.2-cp310-cp310-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

kratoscosimulationapplication-10.4.2-cp39-cp39-win_amd64.whl (993.1 kB view details)

Uploaded CPython 3.9Windows x86-64

kratoscosimulationapplication-10.4.2-cp39-cp39-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

kratoscosimulationapplication-10.4.2-cp38-cp38-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86-64

kratoscosimulationapplication-10.4.2-cp38-cp38-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

File details

Details for the file kratoscosimulationapplication-10.4.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6f7a9f4ada747384a4b959cf1a615b4c7fb40b3491e9fcd7c4c5ef574522a594
MD5 ea4ad4ffb04406a4c725067678d81181
BLAKE2b-256 3cd627e37fd09a2089e916f3226afda2658643900efccd23e19f38ddf6051d9a

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3417d0ef3fd91dc9f12a6c87b8ec469112ed47c47c4df178974aeed25cd381c4
MD5 f00a72d04064b07c1fac8aff9261c34d
BLAKE2b-256 7a81da66375325c8ca37704e7286fb1269cda1faa95abd8c0df45b19d56d6c2a

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f027fe3c5a4d9c0e0faa6b0d9fcdc45a65bd275f97d60ed9959673119200164
MD5 0e92160cff2533aeb556f99d890f4936
BLAKE2b-256 cd62d2a9a8e7b76d817cb5ddb24039ca3571d1af3bbc3bb88a9fbe9ae1fc6860

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78298945def6ba27be189f7b8bf6ac8e8e702fa150bc146c4e6db17fb67b52a1
MD5 32da501196ce27f5d9a515917810776a
BLAKE2b-256 32a59aaa341defe6640a452de6b2237f43b54dfde491f93ddf2f5fb62c18d8ff

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 249dd0860bb92a6f1b1cf5b5480ce60f58ea3d638c2607424e6d7684b56e4ab5
MD5 4b3de0619285a8c809944a5998b43211
BLAKE2b-256 7be9b209b0e38d6c95e18893128879bea0aacf0c092c365f927e5e398c1fd4ea

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6216a1f6a476bce069cdc958e02fa748ba1bcc1b9f5550b3063013380f7d9f9f
MD5 f912646074b1223a42750f9163e03874
BLAKE2b-256 5483fc9ceb6024e09c3823e083f02c26b8d61bf2a3dadd0da302dda37522883c

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b16fdda0db0ae59e394632d2205caa1e948c65f2e547fabd2ec263e506fd699
MD5 7159bff733b9fb76ba74fd58efebd6aa
BLAKE2b-256 faf953f5bbbafb5624bd818bd11f5496bd0ae159d86325c77ceb472db9117df8

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38044b8153807c90378699d5911ff5fcba7acd6b4c43948125115d26dda8d76e
MD5 6998d3877b5a5eed7557e18901d33560
BLAKE2b-256 30c7c6776ebb87c994bbda0ae2cbf95ecc68d3b1cf22891752276c1cd6e8da05

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 628364d76e7addfd7bac7d4cb10955d0519107e915692d5279c441c549a72bd4
MD5 fff2ebed20c154f62aac3dc6c65fad73
BLAKE2b-256 ff8b17d1bfa652749adeac64f5baaad1b73faf0e281c7fa400cd0c1bb9241ed4

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4075733917e0363a2005272d0190b71c38ee9e2428a3e970a710dc24a8e3d637
MD5 23d515eb1612c732e8435d39649fd2cb
BLAKE2b-256 242cdb80d7a24c585bf5bf3729e422d661aef3d03c7bb8775d2a711ed48b2ef8

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 275fbf8c208c807b2f1d9ad6ff2c233999365644fe66f38f855454b71d5fcf9b
MD5 a4d73a9ec4013f468c8863145edc3e7f
BLAKE2b-256 5ba7a37edfe3042dd7c33dc4d41ce2694ea9821704a72d734922b625824ac806

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6239ea2b940509657781d26368a556d838d86ea2ab052e3030762b0bd64ae6c6
MD5 68389c1f125312810be99d226efe602b
BLAKE2b-256 c69f79438eda22fae603bb47dd51dfe4b1037bad2bb6da4a0515d224555d7518

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 655c8c9b9558f67862ebc54e3dee67d9bd5349f3d479f9f9262c23fdc7f8af63
MD5 224b2cc13b7514c084b1711d91b945b6
BLAKE2b-256 bb6f53d2023f1313a7a6bd2b35462d90b388fd1dc404029928da9dbc571fefc7

See more details on using hashes here.

File details

Details for the file kratoscosimulationapplication-10.4.2-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kratoscosimulationapplication-10.4.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1f6ca026e0c564f4b8fee952a602a8e14a9a1c1efc43d491afc63589aee986d
MD5 64cba27d37cde19483ee84080c8d8681
BLAKE2b-256 214932d65976a2eaa5508f5d746822defe365fff98dba743140ae8130f9ab3c7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page