On Fri, Jan 18, 2019 at 1:37 AM <ss.k...@pusan.ac.kr> wrote:

> Hello, all.
>
>
>
> I have a question about printing output error bounds in the offline stage.
>
>
>
> We can see that maximum solution error bounds of each step in the RB
> training process, such as
>
> ==================================================================
>
> .
>
> ---- Basis dimension: 1 ----
>
> Performing RB solves on training set
>
> Maximum error bound is 1.07082
>
>
>
> Performing truth solve at parameter:
>
> .
>
> ==================================================================
>
>
>
> Besides, using the code "rb_eval.RB_output_error_bounds[0]" in the main
> program, I printed the output error bound after the RB training.
>
> However, I cannot find any way to print all output error bounds during an
> RB
> training.
>
> In other words, I want to see output error bound corresponding the basis
> dimension similar to the above code.
>
>
>
> Could you please tell me how to print them?
>
>
>
> I always thank you for your help.
>

I'm not really sure what you want to print... but the print statement you
referred to above is in rb_construction.C, where it does "libMesh::out <<
"Maximum error bound is " << training_greedy_error << std::endl <<
std::endl;". I guess you could do something like that in your code, or add
libMesh::out calls in your local libMesh in order to print more info?

Best,
David

_______________________________________________
Libmesh-users mailing list
Libmesh-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to