Skip to content

Commit

Permalink
Update batch_vent_functions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
elcarrillo authored Sep 8, 2024
1 parent f13e2e8 commit f1afb35
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions wrappers/batch_vent_functions.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-

# Author : Edgar Carrillo
# Created : 2023-07-01
# Last Modified: 2024-09-08
# Affilation : Fisk University, Vanderbilt University

import numpy as np
import random; random.seed(1)
import math
import itertools


## NOTE create list of values for Velocity, vent diameter, external water added
# each list except external water should be of same lenght


## script to create input list of vent diameter sizes for plumeria software using differnet
## distrubutions methos such as random or log increasing values

'''
Script to create input list of vent diameter sizes for plumeria software using different
distributions methods such as random or log increasing values
'''
## create set of random values given a set range
def random_generate(min_vent_diameter, max_vent_diameter, input_value_total):
randomlist = []
Expand Down

0 comments on commit f1afb35

Please sign in to comment.