24 lines
559 B
C
24 lines
559 B
C
Info<< nl << "Create Times" << endl;
|
|
|
|
const fileName masterCasePath = masterCase.path();
|
|
const fileName masterCaseName = masterCase.name();
|
|
|
|
Time runTimeMaster
|
|
(
|
|
Time::controlDictName,
|
|
masterCasePath,
|
|
masterCaseName
|
|
);
|
|
runTimeMaster.functionObjects().off();
|
|
|
|
const fileName addCasePath = addCase.path();
|
|
const fileName addCaseName = addCase.name();
|
|
|
|
Time runTimeToAdd
|
|
(
|
|
Time::controlDictName,
|
|
addCasePath,
|
|
addCaseName
|
|
);
|
|
runTimeToAdd.functionObjects().off();
|