Skip to content

Commit

Permalink
various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchabannes committed Apr 28, 2022
1 parent eb25c70 commit 149aa7f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 15 deletions.
1 change: 0 additions & 1 deletion docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.Introducing {feelpp} programming
* Introducing {feelpp} programming
** xref:01-OutputDirectories.adoc[File Organisation]
** xref:02-SettingUpEnvironment.adoc[Runtime Environment]
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/03bis-LoadingParameters.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

= Loading parameters

=== Load a function
== Load a function

We define the {feelpp} expression that we are going to integrate using the
`soption` function that retrieves the command line option string `functions.g`.
Expand All @@ -21,7 +21,7 @@ xref:ROOT:03ter-lineOptions.adoc[here].



=== Load a value
== Load a value

Parameters of the problems can be get with the lines

Expand Down
10 changes: 5 additions & 5 deletions docs/modules/ROOT/pages/03ter-lineOptions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
= Line options


This page list the possible options to get with `soption`, `doption`... The syntax is
This page list the possible options to get with `soption`, `doption`... The syntax is

[source,cpp]
----
auto f = [soption | doption | ...] (_name="<field>.<option>") ;
----


=== Parameters and functions
== Parameters and functions

The syntax to configure those parameters is `parameters.<option>` or `functions.<option>`.
The possible values for parameters and functions are :
Expand All @@ -22,15 +22,15 @@ The possible values for parameters and functions are :



=== Gmsh options
== Gmsh options

The syntax is `gmsh.<option>`. The main options are :

* `filename` : choose the `.geo`file
* `hsize` : set the characteristic mesh size


=== Time options
== Time options

The syntax is `ts.<option>`, and the main options are :

Expand All @@ -39,7 +39,7 @@ The syntax is `ts.<option>`, and the main options are :
* `time-step` : time step


=== Add our own options
== Add our own options

To define special option, the line to add in the source code is :

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/06-VisualizingFunctions.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// -*- mode: adoc -*-
= Visualizing functions over a mesh

The next step is to visualize function over the mesh.
The source code that generate our output is presented in the xref:05-EvaluatingFunvtions.adoc[previous section], we recall it here
The next step is to visualize function over the mesh.
The source code that generate our output is presented in the xref:05-EvaluatingFunctions.adoc[previous section], we recall it here

[source,cpp]
----
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/08-ComputingIntegrals.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Computing integrals over mesh
-----------------------------

The next step is to compute integrals over the mesh ( See link:../07-quickref/integrals.adoc[this] for detailed methods ).
The next step is to compute integrals over the mesh.

=== Step by step explanations

Expand Down Expand Up @@ -94,7 +94,7 @@ int_{boundary of Omega} 1 = 3.14033
----

Note that we don't get the exact results due to the fact that
[stem]:[\Omega_h = \cup_{K \in \mathcal{T}_h} K] which we use for the numerical integration is different from the exact domain stem:[\Omega = \{ (x,y)\in \mathbb{R}^2 | x^2+y^2 < 1\}].
stem:[\Omega_h = \cup_{K \in \mathcal{T}_h} K] which we use for the numerical integration is different from the exact domain stem:[\Omega = \{ (x,y)\in \mathbb{R}^2 | x^2+y^2 < 1\}].


=== Implementation
Expand Down
5 changes: 2 additions & 3 deletions docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
= {feelpp} Developer Manual

This developer manual is for {feelpp} version {project_version}.

* [x] An xref:ROOT:index.adoc[introduction to {feelpp} programming] which go through the main mathematical operations to solve a PDE and present basic programming aspects
This developer manual is for {feelpp} version {page-component-version}.

* [x] An introduction to {feelpp} programming which go through the main mathematical operations to solve a PDE and present basic programming aspects

0 comments on commit 149aa7f

Please sign in to comment.