Skip to content

Commit 21109be

Browse files
committed
Rename repo
1 parent 2804701 commit 21109be

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

.vscode/ltex.dictionary.en-US.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
GenMatFlow
1+
GeMotion
22
jl
33
Gridap

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "GenMatFlow"
1+
name = "GeMotion"
22
uuid = "36728288-a4f7-4519-b5c4-8e73b1bcd050"
33
authors = ["Lambert Theisen <[email protected]>"]
44
version = "0.1.0"

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<p>
44

55
<div align="center">
6-
<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>
7-
<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>
8-
<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>
6+
<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>
7+
<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>
8+
<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>
99
</div>
1010

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

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

2222
- Clone the repository and open the folder
2323
```bash
24-
git clone [email protected]:lamBOOO/GenMatFlow.jl.git
25-
cd GenMatFlow.jl
24+
git clone [email protected]:lamBOOO/GeMotion.jl.git
25+
cd GeMotion.jl
2626
```
2727

2828
- Install all Julia dependencies

docs/make.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
push!(LOAD_PATH,"../src/")
22
push!(LOAD_PATH,"src/")
33

4-
using GenMatFlow
4+
using GeMotion
55
using Documenter
66

77
makedocs(
8-
sitename="GenMatFlow.jl",
8+
sitename="GeMotion.jl",
99
remotes = nothing,
1010
pages = Any[
1111
"Home" => "index.md",
@@ -15,5 +15,5 @@ makedocs(
1515

1616
# optionally deploy docs to github pages
1717
deploydocs(
18-
repo = "github.com/lamBOOO/GenMatFlow.jl.git",
18+
repo = "github.com/lamBOOO/GeMotion.jl.git",
1919
)

examples/simple.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using GenMatFlow
1+
using GeMotion
22
using LineSearches: BackTracking
33
using Gridap
44

5-
out = GenMatFlow.simulate(
5+
out = GeMotion.simulate(
66
name="simple",
77
Pr=0.7,
88
Ra=1E3,

examples/validation-basak/basak.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using GenMatFlow
1+
using GeMotion
22
using LineSearches: BackTracking, StrongWolfe, Static, HagerZhang, MoreThuente
33
using Makie
44
using Gridap
@@ -50,7 +50,7 @@ cases =
5050
# Run cases
5151
outs = []
5252
for (i,case) in enumerate(cases)
53-
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]...)
53+
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]...)
5454
push!(outs, out)
5555
end
5656

examples/validation-turan/run.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using GenMatFlow
1+
using GeMotion
22
using LineSearches: BackTracking, StrongWolfe
33

44

@@ -35,6 +35,6 @@ cases =
3535

3636
outs = []
3737
for (i,case) in enumerate(cases)
38-
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]...)
38+
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]...)
3939
push!(outs, out)
4040
end

media/logo_text.png

-1.24 KB
Loading

src/GenMatFlow.jl src/GeMotion.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
module GenMatFlow
1+
module GeMotion
22

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

55
include("Solver.jl")
66

7-
end # module GenMatFlow
7+
end # module GeMotion

test/runtests.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Test
22

3-
using GenMatFlow
3+
using GeMotion
44

55
@testset "Unit tests" begin
6-
GenMatFlow.simulate()
6+
GeMotion.simulate()
77
end
88

99
@testset "Test Examples" begin

0 commit comments

Comments
 (0)