We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a762353 commit c8d9ef2Copy full SHA for c8d9ef2
source/models/static-problems.rst
@@ -516,7 +516,8 @@ These boundary conditions are achieved from the definition of the periodic finit
516
// Problem
517
problem laplace (uh, vh)
518
= int2d(Th)(
519
- dx(uh)*dx(vh)
+ uh*vh*1.0e-10 // to fix the constant
520
+ + dx(uh)*dx(vh)
521
+ dy(uh)*dy(vh)
522
)
523
+ int2d(Th)(
@@ -578,7 +579,8 @@ The following example give such example.
578
579
real k = intf / mTh;
580
581
582
583
584
585
586
0 commit comments