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 "AdamsBashforth5.H"
#include "AdamsBashforth5.hpp"

View File

@ -18,12 +18,12 @@ Licence:
-----------------------------------------------------------------------------*/
#ifndef __AdamsBashforth5_H__
#define __AdamsBashforth5_H__
#ifndef __AdamsBashforth5_hpp__
#define __AdamsBashforth5_hpp__
#include "integration.H"
#include "pointFields.H"
#include "integration.hpp"
#include "pointFields.hpp"
namespace pFlow
{
@ -35,7 +35,7 @@ struct AB5History
realx3 dy3_={0,0,0};
realx3 dy4_={0,0,0};
TypeNameNV("AB5History");
TypeInfoNV("AB5History");
};
@ -92,7 +92,7 @@ protected:
public:
// type info
TypeName("AdamsBashforth5");
TypeInfo("AdamsBashforth5");
//// - Constructors
AdamsBashforth5(
@ -184,4 +184,4 @@ bool pFlow::AdamsBashforth5::intRange(
} // pFlow
#endif //__integration_H__
#endif //__integration_hpp__