File: matrixCalculate.cpp

package info (click to toggle)
groops 0%2Bgit20250907%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 11,140 kB
  • sloc: cpp: 135,607; fortran: 1,603; makefile: 20
file content (65 lines) | stat: -rw-r--r-- 1,881 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/***********************************************/
/**
* @file matrixCalculate.cpp
*
* @brief Matrix manipulation.
*
* @author Torsten Mayer-Guerr
* @date 2017-09-01
*
*/
/***********************************************/

// Latex documentation
#define DOCSTRING docstring
static const char *docstring = R"(
This program creates a \file{matrix}{matrix} from multiple matrices.
All \configClass{matrices}{matrixGeneratorType} are summed up. The size of the resulting matrix is exandeded to fit all matrices.
The class \configClass{matrixGenerator}{matrixGeneratorType} allows complex matrix operations before.
)";

/***********************************************/

#include "programs/program.h"
#include "files/fileMatrix.h"
#include "classes/matrixGenerator/matrixGenerator.h"

/***********************************************/

/** @brief Matrix manipulation.
* @ingroup programsGroup */
class MatrixCalculate
{
public:
  void run(Config &config, Parallel::CommunicatorPtr comm);
};

GROOPS_REGISTER_PROGRAM(MatrixCalculate, SINGLEPROCESS, "Matrix manipulation", Misc, Matrix)

/***********************************************/

void MatrixCalculate::run(Config &config, Parallel::CommunicatorPtr /*comm*/)
{
  try
  {
    FileName           fileName;
    MatrixGeneratorPtr matrixGenerator;

    readConfig(config, "outputfileMatrix", fileName, Config::MUSTSET,  "", "");
    readConfig(config, "matrix", matrixGenerator, Config::MUSTSET, "", "");
    if(isCreateSchema(config)) return;

    logStatus<<"calculate matrix"<<Log::endl;
    Matrix A = matrixGenerator->compute();
    logInfo<<"  dimension of resulting matrix: "<<A.rows()<<" x "<<A.columns()<<Log::endl;

    logStatus<<"write matrix to <"<<fileName<<">"<<Log::endl;
    writeFileMatrix(fileName, A);
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

/***********************************************/