Skip to content

Gismo adapter docs: Rendering and readability improvements #516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 13 additions & 16 deletions pages/docs/adapters/adapter-gismo.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,29 @@ Clone G+Smo and build a specific solver:
git clone https://github.com/gismo/gismo.git
cd gismo
mkdir build & cd build
cmake .. -DGISMO_OPTIONAL="<Other submodules>;gsPreCICE"
cmake .. -DGISMO_OPTIONAL="<additional submodules>;gsPreCICE"
make <solver_name>
```

Depending on the solver, different submodules need to be added.
Depending on the solver, different submodules need to be added. These `<additional submodules>` can be [`gsElasticity`](https://github.com/gismo/gsElasticity), [`gsKLShell`](https://github.com/gismo/gsKLShell) and [`gsStructuralAnalysis`](https://github.com/gismo/gsStructuralAnalysis).

`<Other submodules>` can be [`gsElasticity`](https://github.com/gismo/gsElasticity), [`gsKLShell`](https://github.com/gismo/gsKLShell) and [`gsStructuralAnalysis`](https://github.com/gismo/gsStructuralAnalysis). For more details, refer to the documentation and examples within each submodule.

| **Solver** | **Required Submodules** | **Configuration** |
|------------------------------------|-------------------------------------------------------------------|---------------------------------------------------|
| `perpendicular-flap-vertex-gismo` | [`gsElasticity`](https://github.com/gismo/gsElasticity),[`gsStructuralAnalysis`](https://github.com/gismo/gsStructuralAnalysis) | `cmake .. -DGISMO_OPTIONAL="gsPreCICE;gsElasticity;gsStructuralAnalysis"`|

Finally, make the solver discoverable, e.g. by installation (by default, to `/usr/local/`, which might not be in your `LD_LIBRARY_PATH`):
For example, to build the solver `perpendicular-flap-vertex-gismo`, configure and build with:

```bash
make install <solver_name>
cmake .. -DGISMO_OPTIONAL="gsElasticity;gsStructuralAnalysis;gsPreCICE"
make perpendicular-flap-vertex-gismo
```

### Example instructions for `perpendicular-flap-vertex-gismo`
For more details, refer to the documentation and examples within each submodule. Available solvers:

| **Solver** | **Additional submodules** |
|------------------------------------|-------------------------------------------------------------------|
| `perpendicular-flap-vertex-gismo` | [`gsElasticity`](https://github.com/gismo/gsElasticity),[`gsStructuralAnalysis`](https://github.com/gismo/gsStructuralAnalysis) |

Finally, make the solver discoverable, e.g. by installation (by default, to `/usr/local/`, which might not be in your `LD_LIBRARY_PATH`):

```bash
git clone https://github.com/gismo/gismo.git
cd gismo
mkdir build & cd build
cmake .. -DGISMO_OPTIONAL="gsElasticity;gsStructuralAnalysis;gsPreCICE"
make install perpendicular-flap-vertex-gismo
make install <solver_name>
```

## History
Expand Down