Difference between revisions of "Fuller's Problem (Muscod)"

From mintOC
Jump to: navigation, search
(initial setup)
 
m (Moved C to Muscod)
Line 9: Line 9:
 
</source>
 
</source>
  
[[Category:C]]
+
[[Category:Muscod]]

Revision as of 11:17, 28 January 2016

The differential equations for Fuller's problem in C code read as follows

double myu = -1 + 2*u[0];
 
rhs[0] = xd[1];
rhs[1] = myu;
rhs[2] = xd[0]*xd[0];