Reporter system, JSON library, and Geochemistry module help #15796
-
@WilkAndy I hoping you could help me with a problem I am seeing with the geochemistry module. I am working on creating a new system: Reporter system. This is a generalization of the Postprocessor and VectorPostprocessor system to allow for arbitrary types. This new system includes JSON output to handle complex/arbitrary types. To facility the JSON output I am changing the underlying library we use for JSON support. I have attempted to update the geochemistry module to use this new library, but I have one test still failing and was hoping you could take a look. The offending test is a CSVDIFF and the values are completely different.
If you have time you can take a look? You can get the code here: https://github.com/aeslaughter/moose/tree/reporter-11323 |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Sure, where do i see the diffs? I don't think i have time to pull from your branch and recompile - it takes my computer about an hour usually and i don't have that time to spare. |
Beta Was this translation helpful? Give feedback.
-
By the way, you might like to run cd geochemistry/test/tests/time_dependent_reactions/ to compare your results with the "gold standard" GWB software. |
Beta Was this translation helpful? Give feedback.
-
On another note, the geochemistry/unit seems to have a segfault on upstream/next (166c9f3).
|
Beta Was this translation helpful? Give feedback.
-
OK, the json problem is almost definitely that it's not parsing the "note" in the following correctly.
These lines of C++ are not working properly:
|
Beta Was this translation helpful? Give feedback.
OK, the json problem is almost definitely that it's not parsing the "note" in the following correctly.
These lines of C++ are not wo…