modify for coupling-cpp and hpp

This commit is contained in:
hamidrezanorouzi
2022-12-10 01:32:54 +03:30
parent 878c281d45
commit 8cc47b1c47
393 changed files with 1679 additions and 1679 deletions

View File

@ -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 };

View File

@ -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__