Thomas Titscher
Thomas Titscher
I am also interested in plotting nested sampling results, thank you for your response! > What kind of structure the nested sampling algos output? So far, I looked into Nestle...
Currently, I also add the thickness/area in the gradient/hessian functions. But it feels like a workaround and I find it reasonable to have this parameter. In my understanding, the cell...
I prefer the `iostreams` as well. Just a quick note: Whenever possible, use [`#include `](http://en.cppreference.com/w/cpp/header/iosfwd) in the header files to reduce compile time...
I think, passing the logger around, is quite annoying. How about [boost.log](http://www.boost.org/doc/libs/1_63_0/libs/log/doc/html/log/tutorial.html#log.tutorial.trivial)? e.g. ~~~cpp #include ... BOOST_LOG_TRIVIAL(trace) - Besides the record message, each log record in the output contains a...
I found myself adding methods like "SetQuiet()" to classes to suppress `std::cout` output. But this seems like the job of a logger. So I really like to collect ideas on...
As #240 is merged, do we want to advance it? Some ideas - [ ] log exceptions to `NuTo::Log::Error` - [ ] with `pragma omp critical` for thread safety -...
Will there still be coordinate elements? And the layered ElementCollection? For non-isoparametric elements, the function space for geometry and dof differs, right? Could this be a problem? Maybe in the...
There are several companions in NuTo. MeshCompanion, ConstraintCompanion, EigenCompanion. They are named after the [CompanionCube](https://theportalwiki.com/wiki/Weighted_Companion_Cube) and will happily guide you through your NuTo experience. Don't you dare questioning their naming!...
I was just spending an hour trying to find a bug. It was normal orientation issue (in gmsh), where one of my four surfaces had the wrong normals. For this...
So you want to solve a PDE where some terms use a different spatial derivative? At the first glance, this sounds odd. Maybe you could describe the problem in more...