mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
modify for coupling-cpp and hpp
This commit is contained in:
@ -18,7 +18,7 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#include "AdamsBashforth3.H"
|
||||
#include "AdamsBashforth3.hpp"
|
||||
|
||||
//const real AB3_coef[] = { 23.0 / 12.0, 16.0 / 12.0, 5.0 / 12.0 };
|
||||
|
@ -18,12 +18,12 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef __AdamsBashforth3_H__
|
||||
#define __AdamsBashforth3_H__
|
||||
#ifndef __AdamsBashforth3_hpp__
|
||||
#define __AdamsBashforth3_hpp__
|
||||
|
||||
|
||||
#include "integration.H"
|
||||
#include "pointFields.H"
|
||||
#include "integration.hpp"
|
||||
#include "pointFields.hpp"
|
||||
|
||||
namespace pFlow
|
||||
{
|
||||
@ -33,7 +33,7 @@ struct AB3History
|
||||
realx3 dy1_={0,0,0};
|
||||
realx3 dy2_={0,0,0};
|
||||
|
||||
TypeNameNV("AB3History");
|
||||
TypeInfoNV("AB3History");
|
||||
};
|
||||
|
||||
|
||||
@ -89,7 +89,7 @@ protected:
|
||||
public:
|
||||
|
||||
// type info
|
||||
TypeName("AdamsBashforth3");
|
||||
TypeInfo("AdamsBashforth3");
|
||||
|
||||
//// - Constructors
|
||||
AdamsBashforth3(
|
||||
@ -177,4 +177,4 @@ bool pFlow::AdamsBashforth3::intRange(
|
||||
|
||||
} // pFlow
|
||||
|
||||
#endif //__integration_H__
|
||||
#endif //__integration_hpp__
|
Reference in New Issue
Block a user