VITAL is a Python package designed for the assessment of vessel integrated turbines, aimed at optimizing the Levelized Cost of Energy (LCOE).
- Conda should be installed on your system.
- If you don't have Conda installed, you can download it from the official Conda website: https://www.anaconda.com/download.
- Anaconda Tutorial - A helpful guide for first-time Python users.
-
Clone the Repository:
git clone https://github.com/sandialabs/VITAL.git
-
Navigate to the project directory:
cd VITAL
-
Create the Conda Environment
conda env create --file environment.yml
-
Activate the Conda Environment
conda activate VITAL_env
-
Install the Package in Editable Mode
pip install -e .
- If you need to deactivate the environment, you can use the following command:
conda deactivate
-
Remember to activate the environment again using
conda activate VITAL_env
whenever you want to work within this environment. -
If you want to remove the environment, you can use the following command:
conda env remove --name VITAL_env
This command will remove the VITAL_env
environment and all its associated packages.
-
Open a terminal or command prompt.
-
Activate the
VITAL_env
Conda environment using the following command:
conda activate VITAL_env
This command will activate the VITAL_env
environment, ensuring that you are using the correct Python environment for running Jupyter Notebook.
-
Navigate to the directory where you want to create or open your Jupyter Notebook.
-
Run the following command to launch Jupyter Notebook:
jupyter notebook
This command will start the Jupyter Notebook server and open a new tab or window in your default web browser.
-
In the Jupyter Notebook interface, you can create a new notebook or open an existing notebook by clicking on the respective options.
-
You can now start working with Jupyter Notebook and run the tutorials available in this GitHub repository.
-
To stop the Jupyter Notebook server, go back to the terminal or command prompt where it was launched and press
Ctrl + C
. Confirm by typingy
and pressingEnter
.
Copyright 2025 National Technology & Engineering Solutions of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S. Government retains certain rights in this software.
This project is licensed under the Apache License, Version 2.0. See the LICENSE.md
file for details.