Skip to content

How to check results in toolbox cfpde #1624

Answered by prudhomm
prudhomm asked this question in Toolboxes
Discussion options

You must be logged in to vote

you can do this by adding a Checkers section in the json.
You have an example here https://github.com/feelpp/feelpp/blob/develop/toolboxes/coefficientformpdes/heat/thermo2d/thermo2d_alternative.json#L187-L196.

First you have to calculate an error between B and the exact solution in the Measures section of type Statistics or Norm and then in the Checkers section, you give the name of the calculated measure (in the example it's Statistics_dT_dt_v1_integrate) and in value you put the expected value (so 0 for you) and finally the tolerance that you grant yourself.

"Checkers":
 {
     "Measures":
      {
            "Statistics_dT_dt_v1_integrate":
              {
                   "value":"p…

Replies: 1 comment

Comment options

prudhomm
May 29, 2021
Maintainer Author

You must be logged in to vote
0 replies
Answer selected by prudhomm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment