Skip to content

Commit

Permalink
Rename repo
Browse files Browse the repository at this point in the history
  • Loading branch information
lamBOOO committed Oct 14, 2024
1 parent 2804701 commit 21109be
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .vscode/ltex.dictionary.en-US.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GenMatFlow
GeMotion
jl
Gridap
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "GenMatFlow"
name = "GeMotion"
uuid = "36728288-a4f7-4519-b5c4-8e73b1bcd050"
authors = ["Lambert Theisen <lambert.theisen@rwth-aachen.de>"]
version = "0.1.0"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<p>

<div align="center">
<a href="https://github.com/lamBOOO/GenMatFlow.jl/actions"><img src="https://github.com/lamBOOO/GenMatFlow.jl/actions/workflows/test.yml/badge.svg" alt="Testing workflow badge"/></a>
<a href="https://lambooo.github.io/GenMatFlow.jl/dev/"><img src="https://img.shields.io/badge/docs-dev-blue.svg" alt="Dev documentation badge"/></a>
<a href="https://github.com/lamBOOO/GenMatFlow.jl/blob/master/LICENSE"><img src="https://img.shields.io/github/license/lamBOOO/GenMatFlow.jl.svg" alt="License badge"/></a>
<a href="https://github.com/lamBOOO/GeMotion.jl/actions"><img src="https://github.com/lamBOOO/GeMotion.jl/actions/workflows/test.yml/badge.svg" alt="Testing workflow badge"/></a>
<a href="https://lambooo.github.io/GeMotion.jl/dev/"><img src="https://img.shields.io/badge/docs-dev-blue.svg" alt="Dev documentation badge"/></a>
<a href="https://github.com/lamBOOO/GeMotion.jl/blob/master/LICENSE"><img src="https://img.shields.io/github/license/lamBOOO/GeMotion.jl.svg" alt="License badge"/></a>
</div>

# GenMatFlow.jl: A Navier-Stokes-Fourier Solver for generalized material laws
# GeMotion.jl: A Navier-Stokes-Fourier Solver for generalized material laws

- Different material laws, including:
- Newtonian fluids: $\boldsymbol{\sigma} = \boldsymbol{D}(\boldsymbol{u}) = \frac12 (\boldsymbol{\nabla} \boldsymbol{u} + \boldsymbol{\nabla} \boldsymbol{u}^T)$
Expand All @@ -21,8 +21,8 @@

- Clone the repository and open the folder
```bash
git clone git@github.com:lamBOOO/GenMatFlow.jl.git
cd GenMatFlow.jl
git clone git@github.com:lamBOOO/GeMotion.jl.git
cd GeMotion.jl
```

- Install all Julia dependencies
Expand Down
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
push!(LOAD_PATH,"../src/")
push!(LOAD_PATH,"src/")

using GenMatFlow
using GeMotion
using Documenter

makedocs(
sitename="GenMatFlow.jl",
sitename="GeMotion.jl",
remotes = nothing,
pages = Any[
"Home" => "index.md",
Expand All @@ -15,5 +15,5 @@ makedocs(

# optionally deploy docs to github pages
deploydocs(
repo = "github.com/lamBOOO/GenMatFlow.jl.git",
repo = "github.com/lamBOOO/GeMotion.jl.git",
)
4 changes: 2 additions & 2 deletions examples/simple.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using GenMatFlow
using GeMotion
using LineSearches: BackTracking
using Gridap

out = GenMatFlow.simulate(
out = GeMotion.simulate(
name="simple",
Pr=0.7,
Ra=1E3,
Expand Down
4 changes: 2 additions & 2 deletions examples/validation-basak/basak.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using GenMatFlow
using GeMotion
using LineSearches: BackTracking, StrongWolfe, Static, HagerZhang, MoreThuente
using Makie
using Gridap
Expand Down Expand Up @@ -50,7 +50,7 @@ cases =
# Run cases
outs = []
for (i,case) in enumerate(cases)
out = GenMatFlow.simulate(name="$i", Pr=case[1], Ra=case[2], n=case[3], n_elems=case[4], nlsolver_opts=case[5], levels=case[6]; case[7]...)
out = GeMotion.simulate(name="$i", Pr=case[1], Ra=case[2], n=case[3], n_elems=case[4], nlsolver_opts=case[5], levels=case[6]; case[7]...)
push!(outs, out)
end

Expand Down
4 changes: 2 additions & 2 deletions examples/validation-turan/run.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using GenMatFlow
using GeMotion
using LineSearches: BackTracking, StrongWolfe


Expand Down Expand Up @@ -35,6 +35,6 @@ cases =

outs = []
for (i,case) in enumerate(cases)
out = GenMatFlow.simulate(name="$i", Pr=case[1], Ra=case[2], n=case[3], n_elems=case[4], nlsolver_opts=case[5], levels=case[6]; case[7]...)
out = GeMotion.simulate(name="$i", Pr=case[1], Ra=case[2], n=case[3], n_elems=case[4], nlsolver_opts=case[5], levels=case[6]; case[7]...)
push!(outs, out)
end
Binary file modified media/logo_text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/GenMatFlow.jl → src/GeMotion.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module GenMatFlow
module GeMotion

greet() = print("Hello World!")

include("Solver.jl")

end # module GenMatFlow
end # module GeMotion
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Test

using GenMatFlow
using GeMotion

@testset "Unit tests" begin
GenMatFlow.simulate()
GeMotion.simulate()
end

@testset "Test Examples" begin
Expand Down

0 comments on commit 21109be

Please sign in to comment.