Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107007259
runge_kutta_step_structs.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Apr 3, 11:54
Size
675 B
Mime Type
text/x-c
Expires
Sat, Apr 5, 11:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25330937
Attached To
rSPECMICP SpecMiCP / ReactMiCP
runge_kutta_step_structs.hpp
View Options
#ifndef SPECMICP_ODEINT_RUNGEKUTTASTEPSTRUCTS_HPP
#define SPECMICP_ODEINT_RUNGEKUTTASTEPSTRUCTS_HPP
#include "common.hpp"
namespace specmicp {
namespace odeint {
struct EmbeddedRungeKuttaStepOptions
{
scalar_t safety;
scalar_t p_grow;
scalar_t p_shrink;
scalar_t errcon;
scalar_t max_try;
scalar_t eps;
bool non_negativity;
EmbeddedRungeKuttaStepOptions():
safety(0.9),
p_grow(-0.2),
p_shrink(-0.25),
errcon(1.89e-4),
max_try(20),
eps(1e-5),
non_negativity(false)
{}
};
} // end namespace odeint
} // end namespace specmicp
#endif// SPECMICP_ODEINT_RUNGEKUTTASTEPSTRUCTS_HPP
Event Timeline
Log In to Comment