-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
298 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ docs/site/ | |
# environment. | ||
Manifest.toml | ||
LocalPreferences.toml | ||
LevelSetTopOpt.so | ||
GridapTopOpt.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name = "LevelSetTopOpt" | ||
name = "GridapTopOpt" | ||
uuid = "27dd0110-1916-4fd6-8b4b-1bc109db1170" | ||
authors = ["Zach Wegert <[email protected]>", "JordiManyer <[email protected]>"] | ||
version = "0.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# LevelSetTopOpt | ||
# GridapTopOpt | ||
|
||
| **badges** | | ||
|
||
LevelSetTopOpt is computational toolbox for level set-based topology optimisation implemented in Julia and the [Gridap](https://github.com/gridap/Gridap.jl) package ecosystem. See the documentation and following publication for further details: | ||
GridapTopOpt is computational toolbox for level set-based topology optimisation implemented in Julia and the [Gridap](https://github.com/gridap/Gridap.jl) package ecosystem. See the documentation and following publication for further details: | ||
|
||
> Zachary J. Wegert, Jordi Manyer, Connor Mallon, Santiago Badia, and Vivien J. Challis (2024). "LevelSetTopOpt.jl: A scalable Julia toolbox for level set-based topology optimisation". In preparation. | ||
> Zachary J. Wegert, Jordi Manyer, Connor Mallon, Santiago Badia, and Vivien J. Challis (2024). "GridapTopOpt.jl: A scalable Julia toolbox for level set-based topology optimisation". In preparation. | ||
## Documentation | ||
|
||
- [**STABLE**](...) — **Documentation for the most recently tagged version.** | ||
- [**LATEST**](...) — *Documentation for the in-development version.* | ||
|
||
## Citation | ||
In order to give credit to the `LevelSetTopOpt` contributors, we ask that you please reference the above paper along with the required citations for [Gridap](https://github.com/gridap/Gridap.jl?tab=readme-ov-file#how-to-cite-gridap). | ||
In order to give credit to the `GridapTopOpt` contributors, we ask that you please reference the above paper along with the required citations for [Gridap](https://github.com/gridap/Gridap.jl?tab=readme-ov-file#how-to-cite-gridap). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
using PackageCompiler | ||
|
||
create_sysimage([:LevelSetTopOpt], | ||
sysimage_path=joinpath(@__DIR__,"..","LevelSetTopOpt.so"), | ||
create_sysimage([:GridapTopOpt], | ||
sysimage_path=joinpath(@__DIR__,"..","GridapTopOpt.so"), | ||
precompile_execution_file=joinpath(@__DIR__,"warmup.jl")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Benchmarking | ||
|
||
```@docs | ||
LevelSetTopOpt.benchmark | ||
GridapTopOpt.benchmark | ||
``` | ||
|
||
## Existing benchmark methods | ||
```@docs | ||
LevelSetTopOpt.benchmark_optimizer | ||
LevelSetTopOpt.benchmark_single_iteration | ||
LevelSetTopOpt.benchmark_forward_problem | ||
LevelSetTopOpt.benchmark_advection | ||
LevelSetTopOpt.benchmark_reinitialisation | ||
LevelSetTopOpt.benchmark_velocity_extension | ||
LevelSetTopOpt.benchmark_hilbertian_projection_map | ||
GridapTopOpt.benchmark_optimizer | ||
GridapTopOpt.benchmark_single_iteration | ||
GridapTopOpt.benchmark_forward_problem | ||
GridapTopOpt.benchmark_advection | ||
GridapTopOpt.benchmark_reinitialisation | ||
GridapTopOpt.benchmark_velocity_extension | ||
GridapTopOpt.benchmark_hilbertian_projection_map | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.