wiki:public/doc-auto/by_ext/msh/H_fem_msh
Last modified 3 years ago Last modified on 01/21/16 13:49:13

Input file msh keyword #FEM_MSH

Description

This is the header of the mesh file.

Documentation from doxygen

None.

Used in benchmarks

Source code reading this keyword from Input files

MSH/msh_lib.cpp line 115

 115: 	getline(msh_file_ascii, line_string);
 116: 
 117: 	bool more_mesh = false; //12.08.2011. WW
 118: 	if(line_string.find("#FEM_MSH") != std::string::npos) // OGS mesh file
 119: 	{
 120: 		mesh = new CFEMesh(geo_obj, unique_name);
 121: 		more_mesh = mesh->Read(&msh_file_ascii);

 126: 			while(!msh_file_ascii.eof())
 127: 			{
 128: 				//getline(msh_file_ascii, line_string);
 129: 				// if(line_string.find("#FEM_MSH")!=std::string::npos)
 130: 				mesh = new CFEMesh(geo_obj, unique_name);
 131: 				more_mesh = mesh->Read(&msh_file_ascii);
 132: 				mesh_vec.push_back(mesh); // TF

MSH/msh_mesh.cpp line 406

 406: 			more_mesh = false; //12.08.2011. WW
 407: 			break;
 408: 		}
 409: 		if (line_string.find("#FEM_MSH") != std::string::npos) //12.08.2011. WW
 410: 		{
 411: 			more_mesh = true;
 412: 			break;

UTL/GIS2FEM/main.cpp line 109

 109: 
 110: 		std::getline(is_mesh, s_buff);
 111: 
 112:         if(s_buff.find("#FEM_MSH") != std::string::npos)
 113: 		{
 114:            a_mesh = new CFEMesh(NULL, &file_name);
 115:            a_mesh->Read(&is_mesh);

Last modified: 2016-01-21 13:49:02.755785

This page has been generated automatically. Do not edit it manually! It will be overwritten in regular intervals.

If you want to edit the handwritten part of this page, please do so here.