gctl_mesh/lib/mesh/linear_mesh_3d.cpp

387 lines
12 KiB
C++
Raw Normal View History

2024-09-10 20:02:00 +08:00
/********************************************************
*
*
*
*
*
*
* Geophysical Computational Tools & Library (GCTL)
*
* Copyright (c) 2023 Yi Zhang (yizhang-geo@zju.edu.cn)
*
* GCTL is distributed under a dual licensing scheme. You can redistribute
* it and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either version 2
* of the License, or (at your option) any later version. You should have
* received a copy of the GNU Lesser General Public License along with this
* program. If not, see <http://www.gnu.org/licenses/>.
*
* If the terms and conditions of the LGPL v.2. would prevent you from using
* the GCTL, please consider the option to obtain a commercial license for a
* fee. These licenses are offered by the GCTL's original author. As a rule,
* licenses are provided "as-is", unlimited in time for a one time fee. Please
* send corresponding requests to: yizhang-geo@zju.edu.cn. Please do not forget
* to include some description of your company and the realm of its activities.
* Also add information on how to contact you by electronic and paper mail.
******************************************************/
#include "linear_mesh_3d.h"
void gctl::linear_mesh_3d::init(std::string in_name, std::string in_info, double xmin, double ymin,
double zmin, const array<double> &xsizes, const array<double> &ysizes, const array<double> &zsizes)
{
2025-01-12 23:39:36 +08:00
check_initiated(true); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
base_mesh::init(LINEAR_MESH, MESH_3D, in_name, in_info);
lm_xmin = xmin;
lm_ymin = ymin;
lm_zmin = zmin;
lm_xbnum = xsizes.size();
lm_ybnum = ysizes.size();
lm_zbnum = zsizes.size();
lm_xsizes.resize(lm_xbnum);
lm_ysizes.resize(lm_ybnum);
lm_zsizes.resize(lm_zbnum);
2025-01-12 23:39:36 +08:00
node_num_ = (lm_xbnum+1) * (lm_ybnum+1) * (lm_zbnum+1);
ele_num_ = lm_xbnum * lm_ybnum * lm_zbnum;
2024-09-10 20:02:00 +08:00
for (int i = 0; i < lm_xbnum; i++)
{
lm_xsizes[i] = xsizes[i];
}
for (int i = 0; i < lm_ybnum; i++)
{
lm_ysizes[i] = ysizes[i];
}
for (int i = 0; i < lm_zbnum; i++)
{
lm_zsizes[i] = zsizes[i];
}
2025-01-12 23:39:36 +08:00
nodes.resize(node_num_);
elements.resize(ele_num_);
2024-09-10 20:02:00 +08:00
int tmp_index;
double x_p, y_p, z_p = lm_zmin - 0.5*lm_zsizes[0];
for (int k = 0; k < lm_zbnum+1; k++)
{
y_p = lm_ymin - 0.5*lm_ysizes[0];
for (int j = 0; j < lm_ybnum+1; j++)
{
x_p = lm_xmin - 0.5*lm_xsizes[0];
for (int i = 0; i < lm_xbnum+1; i++)
{
tmp_index = i+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1);
nodes[tmp_index].id = tmp_index;
nodes[tmp_index].x = x_p;
nodes[tmp_index].y = y_p;
nodes[tmp_index].z = z_p;
if (i < lm_xbnum) x_p += lm_xsizes[i];
}
if (j < lm_ybnum) y_p += lm_ysizes[j];
}
if (k < lm_zbnum) z_p += lm_zsizes[k];
}
for (int k = 0; k < lm_zbnum; k++)
{
for (int j = 0; j < lm_ybnum; j++)
{
for (int i = 0; i < lm_xbnum; i++)
{
tmp_index = i+j*lm_xbnum+k*lm_xbnum*lm_ybnum;
elements[tmp_index].id = tmp_index;
elements[tmp_index].vert[0] = nodes.get(i+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[1] = nodes.get(i+1+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[2] = nodes.get(i+1+(j+1)*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[3] = nodes.get(i+(j+1)*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[4] = nodes.get(i+j*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[5] = nodes.get(i+1+j*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[6] = nodes.get(i+1+(j+1)*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[7] = nodes.get(i+(j+1)*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].dl = nodes.get(i+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].ur = nodes.get(i+1+(j+1)*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
}
}
}
2025-01-12 23:39:36 +08:00
initialized_ = true;
return;
}
void gctl::linear_mesh_3d::show_mesh_dimension(std::ostream &os) const
{
os << "node num: " << node_num_ << std::endl;
os << "elem num: " << ele_num_ << std::endl;
os << "x-range: " << get_xmin() << " -> " << get_xmax() << "\n";
os << "y-range: " << get_ymin() << " -> " << get_ymax() << "\n";
os << "z-range: " << get_zmin() << " -> " << get_zmax() << "\n";
os << "dimension: " << lm_xbnum << ", " << lm_ybnum << ", " << lm_zbnum << "\n";
2024-09-10 20:02:00 +08:00
return;
}
void gctl::linear_mesh_3d::load_binary(std::string filename)
{
2025-01-12 23:39:36 +08:00
check_initiated(true); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
std::ifstream infile;
gctl::open_infile(infile, filename, ".2m",
std::ios::in|std::ios::binary);
// 读入网格头信息
load_headinfo(infile, LINEAR_MESH, MESH_3D);
// 读入网格信息
infile.read((char*)&lm_xbnum, sizeof(int));
infile.read((char*)&lm_ybnum, sizeof(int));
infile.read((char*)&lm_zbnum, sizeof(int));
infile.read((char*)&lm_xmin, sizeof(double));
infile.read((char*)&lm_ymin, sizeof(double));
infile.read((char*)&lm_zmin, sizeof(double));
lm_xsizes.resize(lm_xbnum);
lm_ysizes.resize(lm_ybnum);
lm_zsizes.resize(lm_zbnum);
2025-01-12 23:39:36 +08:00
node_num_ = (lm_xbnum+1) * (lm_ybnum+1) * (lm_zbnum+1);
ele_num_ = lm_xbnum * lm_ybnum * lm_zbnum;
2024-09-10 20:02:00 +08:00
for (int i = 0; i < lm_xbnum; i++)
{
infile.read((char*)lm_xsizes.get(i), sizeof(double));
}
for (int i = 0; i < lm_ybnum; i++)
{
infile.read((char*)lm_ysizes.get(i), sizeof(double));
}
for (int i = 0; i < lm_zbnum; i++)
{
infile.read((char*)lm_zsizes.get(i), sizeof(double));
}
2025-01-12 23:39:36 +08:00
nodes.resize(node_num_);
elements.resize(ele_num_);
2024-09-10 20:02:00 +08:00
int tmp_index;
double x_p, y_p, z_p = lm_zmin - 0.5*lm_zsizes[0];
for (int k = 0; k < lm_zbnum+1; k++)
{
y_p = lm_ymin - 0.5*lm_ysizes[0];
for (int j = 0; j < lm_ybnum+1; j++)
{
x_p = lm_xmin - 0.5*lm_xsizes[0];
for (int i = 0; i < lm_xbnum+1; i++)
{
tmp_index = i+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1);
nodes[tmp_index].id = tmp_index;
nodes[tmp_index].x = x_p;
nodes[tmp_index].y = y_p;
nodes[tmp_index].z = z_p;
if (i < lm_xbnum) x_p += lm_xsizes[i];
}
if (j < lm_ybnum) y_p += lm_ysizes[j];
}
if (k < lm_zbnum) z_p += lm_zsizes[k];
}
for (int k = 0; k < lm_zbnum; k++)
{
for (int j = 0; j < lm_ybnum; j++)
{
for (int i = 0; i < lm_xbnum; i++)
{
tmp_index = i+j*lm_xbnum+k*lm_xbnum*lm_ybnum;
elements[tmp_index].id = tmp_index;
elements[tmp_index].vert[0] = nodes.get(i+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[1] = nodes.get(i+1+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[2] = nodes.get(i+1+(j+1)*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[3] = nodes.get(i+(j+1)*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[4] = nodes.get(i+j*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[5] = nodes.get(i+1+j*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[6] = nodes.get(i+1+(j+1)*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].vert[7] = nodes.get(i+(j+1)*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].dl = nodes.get(i+j*(lm_xbnum+1)+k*(lm_xbnum+1)*(lm_ybnum+1));
elements[tmp_index].ur = nodes.get(i+1+(j+1)*(lm_xbnum+1)+(k+1)*(lm_xbnum+1)*(lm_ybnum+1));
}
}
}
2025-01-12 23:39:36 +08:00
initialized_ = true;
2024-09-10 20:02:00 +08:00
// 读入模型数据单元
load_datablock(infile);
infile.close();
return;
}
void gctl::linear_mesh_3d::save_binary(std::string filename)
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
std::ofstream outfile;
gctl::open_outfile(outfile, filename, ".2m",
std::ios::out|std::ios::binary);
// 首先输出网格的头信息
save_headinfo(outfile);
// 输出网格信息
outfile.write((char*)&lm_xbnum, sizeof(int));
outfile.write((char*)&lm_ybnum, sizeof(int));
outfile.write((char*)&lm_zbnum, sizeof(int));
outfile.write((char*)&lm_xmin, sizeof(double));
outfile.write((char*)&lm_ymin, sizeof(double));
outfile.write((char*)&lm_zmin, sizeof(double));
for (int i = 0; i < lm_xbnum; i++)
{
outfile.write((char*)lm_xsizes.get(i), sizeof(double));
}
for (int i = 0; i < lm_ybnum; i++)
{
outfile.write((char*)lm_ysizes.get(i), sizeof(double));
}
for (int i = 0; i < lm_zbnum; i++)
{
outfile.write((char*)lm_zsizes.get(i), sizeof(double));
}
// 输出的模型数据单元
save_datablock(outfile);
outfile.close();
return;
}
gctl::linear_mesh_3d::linear_mesh_3d() : base_mesh::base_mesh(){}
gctl::linear_mesh_3d::linear_mesh_3d(std::string in_name, std::string in_info, double xmin, double ymin,
double zmin, const gctl::array<double> &xsizes, const gctl::array<double> &ysizes,
const gctl::array<double> &zsizes)
{
init(in_name, in_info, xmin, ymin, zmin, xsizes, ysizes, zsizes);
}
gctl::linear_mesh_3d::~linear_mesh_3d(){}
int gctl::linear_mesh_3d::get_xbnum() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return lm_xbnum;
}
int gctl::linear_mesh_3d::get_ybnum() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return lm_ybnum;
}
int gctl::linear_mesh_3d::get_zbnum() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return lm_zbnum;
}
double gctl::linear_mesh_3d::get_xmin() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return lm_xmin;
}
double gctl::linear_mesh_3d::get_ymin() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return lm_ymin;
}
double gctl::linear_mesh_3d::get_zmin() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
return lm_zmin;
}
double gctl::linear_mesh_3d::get_xmax() const
{
check_initiated(); // 检查网格是否已经初始化
double xmax = lm_xmin - 0.5*lm_xsizes[0];
for (size_t i = 0; i < lm_xsizes.size(); i++)
2024-09-10 20:02:00 +08:00
{
2025-01-12 23:39:36 +08:00
xmax += lm_xsizes[i];
2024-09-10 20:02:00 +08:00
}
2025-01-12 23:39:36 +08:00
xmax -= 0.5*lm_xsizes.back();
return xmax;
}
2024-09-10 20:02:00 +08:00
2025-01-12 23:39:36 +08:00
double gctl::linear_mesh_3d::get_ymax() const
{
check_initiated(); // 检查网格是否已经初始化
double ymax = lm_ymin - 0.5*lm_ysizes[0];
for (size_t i = 0; i < lm_ysizes.size(); i++)
{
ymax += lm_ysizes[i];
}
ymax -= 0.5*lm_ysizes.back();
return ymax;
2024-09-10 20:02:00 +08:00
}
2025-01-12 23:39:36 +08:00
double gctl::linear_mesh_3d::get_zmax() const
2024-09-10 20:02:00 +08:00
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
double zmax = lm_zmin - 0.5*lm_zsizes[0];
for (size_t i = 0; i < lm_zsizes.size(); i++)
2024-09-10 20:02:00 +08:00
{
2025-01-12 23:39:36 +08:00
zmax += lm_zsizes[i];
2024-09-10 20:02:00 +08:00
}
2025-01-12 23:39:36 +08:00
zmax -= 0.5*lm_zsizes.back();
return zmax;
}
2024-09-10 20:02:00 +08:00
2025-01-12 23:39:36 +08:00
const gctl::array<double> *gctl::linear_mesh_3d::get_xsizes() const
{
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return &lm_xsizes;
}
const gctl::array<double> *gctl::linear_mesh_3d::get_ysizes() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return &lm_ysizes;
}
const gctl::array<double> *gctl::linear_mesh_3d::get_zsizes() const
{
2025-01-12 23:39:36 +08:00
check_initiated(); // 检查网格是否已经初始化
2024-09-10 20:02:00 +08:00
return &lm_zsizes;
}
void gctl::linear_mesh_3d::save_gmsh(std::string filename, index_packed_e packed)
{
std::ofstream outfile;
gctl::open_outfile(outfile, filename, ".msh");
gctl::save2gmsh(outfile, elements, nodes, packed);
outfile.close();
return;
}
2025-01-12 23:39:36 +08:00
void gctl::linear_mesh_3d::save_gmsh(std::string filename, output_type_e out_mode, index_packed_e packed)
2024-09-10 20:02:00 +08:00
{
2025-01-12 23:39:36 +08:00
base_mesh::save_gmsh_withdata(filename, out_mode, packed);
2024-09-10 20:02:00 +08:00
return;
}
void gctl::linear_mesh_3d::save_gmsh(std::string filename, std::string datname, output_type_e out_mode, index_packed_e packed)
{
2025-01-12 23:39:36 +08:00
base_mesh::save_gmsh_withdata(filename, datname, out_mode, packed);
2024-09-10 20:02:00 +08:00
return;
}