Hi everyone,
It seems that equation_system.C does not handle the situation where
a NonlinearImplicitSystem is read back in because it does not recognize
the equation system type. Attached is a tiny patch for equation_system.C
which resolves this. Seems it was just forgotten when
NonlinearImplicitSystem was added to libmesh.
-Norbert
Index: equation_systems.C
===================================================================
--- equation_systems.C (revision 3093)
+++ equation_systems.C (working copy)
@@ -309,6 +309,10 @@
// build a linear implicit sytsem
else if (sys_type == "LinearImplicit")
this->add_system<LinearImplicitSystem> (name);
+
+ // build a nonlinear implicit sytsem
+ else if (sys_type == "NonlinearImplicit")
+ this->add_system<NonlinearImplicitSystem> (name);
#if defined(LIBMESH_USE_COMPLEX_NUMBERS)
// build a frequency system
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Libmesh-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-devel