[1D] Change the default max number of grid points to 1000.
The previous default was 3000, which was very high for most domains.
This commit is contained in:
parent
0a363a108d
commit
0b9a741597
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ namespace Cantera
|
|||
{
|
||||
Refiner::Refiner(Domain1D& domain) :
|
||||
m_ratio(10.0), m_slope(0.8), m_curve(0.8), m_prune(-0.001),
|
||||
m_min_range(0.01), m_domain(&domain), m_npmax(3000),
|
||||
m_min_range(0.01), m_domain(&domain), m_npmax(1000),
|
||||
m_gridmin(1e-10)
|
||||
{
|
||||
m_nv = m_domain->nComponents();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue