Skip to content

Commit 149aa7f

Browse files
various fixes
1 parent eb25c70 commit 149aa7f

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

docs/modules/ROOT/nav.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.Introducing {feelpp} programming
21
* Introducing {feelpp} programming
32
** xref:01-OutputDirectories.adoc[File Organisation]
43
** xref:02-SettingUpEnvironment.adoc[Runtime Environment]

docs/modules/ROOT/pages/03bis-LoadingParameters.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
= Loading parameters
44

5-
=== Load a function
5+
== Load a function
66

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

2222

2323

24-
=== Load a value
24+
== Load a value
2525

2626
Parameters of the problems can be get with the lines
2727

docs/modules/ROOT/pages/03ter-lineOptions.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
= Line options
44

55

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

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

1313

14-
=== Parameters and functions
14+
== Parameters and functions
1515

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

2323

2424

25-
=== Gmsh options
25+
== Gmsh options
2626

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

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

3232

33-
=== Time options
33+
== Time options
3434

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

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

4141

42-
=== Add our own options
42+
== Add our own options
4343

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

docs/modules/ROOT/pages/06-VisualizingFunctions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// -*- mode: adoc -*-
22
= Visualizing functions over a mesh
33

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

77
[source,cpp]
88
----

docs/modules/ROOT/pages/08-ComputingIntegrals.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Computing integrals over mesh
44
-----------------------------
55

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

88
=== Step by step explanations
99

@@ -94,7 +94,7 @@ int_{boundary of Omega} 1 = 3.14033
9494
----
9595

9696
Note that we don't get the exact results due to the fact that
97-
[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\}].
97+
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\}].
9898

9999

100100
=== Implementation

docs/modules/ROOT/pages/index.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
= {feelpp} Developer Manual
22

3-
This developer manual is for {feelpp} version {project_version}.
4-
5-
* [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
3+
This developer manual is for {feelpp} version {page-component-version}.
64

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

0 commit comments

Comments
 (0)