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.
27 lines
617 B
27 lines
617 B
//
|
|
// 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) {
|
|
}
|
|
|
|
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) {}
|
|
};
|
|
} // top
|
|
} // da::sha
|
|
|
|
#endif //DESIGNAUTO_HEATMESH_H
|
|
|