Carmen Code
 All Classes Files Functions Variables Macros Pages
Functions
Backup.cpp File Reference

Backup the last simulation. More...

#include "Carmen.h"
Include dependency graph for Backup.cpp:

Functions

void Backup (Node *Root)
 Stores the tree structure and data in order to restart a multiresolution computation. More...
 
void Backup (FineMesh *Root)
 Stores the data countained in a regular mesh Root in order to restart a finite volume computation. More...
 

Detailed Description

Backup the last simulation.

Function Documentation

void Backup ( Node Root)

Stores the tree structure and data in order to restart a multiresolution computation.

  • Root denotes the pointer to the first node of the tree structure.

    Parameters
    RootRoot
    Returns
    void
31 {
32  Root->backup();
33 }
void backup()
Backs up the tree structure and the cell-averages into a file carmen.bak. In further computations...
Definition: Node.cpp:2716

Here is the caller graph for this function:

void Backup ( FineMesh Root)

Stores the data countained in a regular mesh Root in order to restart a finite volume computation.

Parameters
RootRoot
Returns
void
43 {
44  Root->backup();
45 }
void backup()
Backs up the tree structure and the cell-averages into a file carmen.bak. In further computations...
Definition: FineMesh.cpp:1741