You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
617 B

2 years ago
//
// Created by cflin on 5/4/23.
//
#ifndef DESIGNAUTO_HEATMESH_H
#define DESIGNAUTO_HEATMESH_H
#include "Mesh.h"
namespace da::sha {
namespace top {
class HeatMesh : public Mesh {
public:
HeatMesh(int len_x, int len_y, int len_z) : Mesh(len_x, len_y, len_z, 1) {
}
2 years ago
HeatMesh(int len_x, int len_y, int len_z, const Tensor3d &user_defined_grid)
:
Mesh(len_x, len_y,
len_z,
user_defined_grid, 1) {}
};
2 years ago
} // top
} // da::sha
#endif //DESIGNAUTO_HEATMESH_H