Skip to content

Commit

Permalink
Added example CSV files
Browse files Browse the repository at this point in the history
  • Loading branch information
RXGottlieb committed Apr 7, 2023
1 parent a78077e commit 3f90b84
Show file tree
Hide file tree
Showing 5 changed files with 1,273 additions and 32 deletions.
8 changes: 6 additions & 2 deletions examples/explicit_kinetic_problem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@
# Import the necessary packages
using EAGO, JuMP, CSV, DataFrames, Symbolics, SourceCodeMcCormick, CUDA, BenchmarkTools

# Import the ParBB algorithm
include(joinpath(@__DIR__, "ParBB", "extension.jl"))
include(joinpath(@__DIR__, "ParBB", "subroutines.jl"))

# Import the kinetic intensity data
data = CSV.read("C:/Users/rxg20001/Documents/Github_Repositories/EAGO-GPU.jl/kinetic_intensity_data.csv", DataFrame)
bounds = CSV.read("C:/Users/rxg20001/Documents/Github_Repositories/EAGO-GPU.jl/implicit_variable_bounds.csv", DataFrame)
data = CSV.read(joinpath(@__DIR__, "kinetic_intensity_data.csv"), DataFrame)
bounds = CSV.read(joinpath(@__DIR__, "implicit_variable_bounds.csv"), DataFrame)

# Define the constant terms in the expressions
T = 273.0
Expand Down
Loading

0 comments on commit 3f90b84

Please sign in to comment.