diff --git a/README.md b/README.md new file mode 100644 index 0000000..335b73f --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Computer-aided molecular design of novel refrigerants to replace R134a + +Term project for `CENG97009 Advanced Process Optimisation 1` at Imperial College London. diff --git a/start.jl b/start.jl deleted file mode 100644 index b1e326f..0000000 --- a/start.jl +++ /dev/null @@ -1,17 +0,0 @@ -using Pkg -Pkg.add("GAMS") -Pkg.add("JuMP") - -using GAMS, JuMP -model = Model(GAMS.Optimizer) - -@variable(model, 0 <= x <= 2) -@variable(model, 0 <= y <= 30) - -@objective(model, Max, 5x + 3 * y) - -@constraint(model, con, 1x + 5y <= 3) - -optimize!(model) - -set_optimizer_attribute(model, GAMS.Solver(), "CPLEX")