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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
/*
* Copyright (C) 2011 Thorsten Liebig (Thorsten.Liebig@gmx.de)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "processfields_sar.h"
#include "operator_base.h"
#include "tools/vtk_file_writer.h"
#include "tools/hdf5_file_writer.h"
#include "tools/sar_calculation.h"
#include "CSPropMaterial.h"
using namespace std;
ProcessFieldsSAR::ProcessFieldsSAR(Engine_Interface_Base* eng_if) : ProcessFieldsFD(eng_if)
{
m_UseCellKappa = true;
m_SAR_method = "Simple";
}
ProcessFieldsSAR::~ProcessFieldsSAR()
{
for (size_t n = 0; n<m_E_FD_Fields.size(); ++n)
Delete_N_3DArray(m_E_FD_Fields.at(n),numLines);
m_E_FD_Fields.clear();
for (size_t n = 0; n<m_J_FD_Fields.size(); ++n)
Delete_N_3DArray(m_J_FD_Fields.at(n),numLines);
m_J_FD_Fields.clear();
}
void ProcessFieldsSAR::SetDumpType(DumpType type)
{
if (type==SAR_RAW_DATA)
m_UseCellKappa = true;
ProcessFieldsFD::SetDumpType(type);
}
bool ProcessFieldsSAR::NeedConductivity() const
{
return !m_UseCellKappa;
}
void ProcessFieldsSAR::SetSubSampling(unsigned int subSampleRate, int dir)
{
UNUSED(subSampleRate);UNUSED(dir);
cerr << "ProcessFieldsSAR::SetSubSampling: Warning: Defining a sub-sampling for SAR calculation is not allowed!!! Skipped!" << endl;
}
void ProcessFieldsSAR::SetOptResolution(double optRes, int dir)
{
UNUSED(optRes);UNUSED(dir);
cerr << "ProcessFieldsSAR::SetOptResolution: Warning: Defining a sub-sampling for SAR calculation is not allowed!!! Skipped!" << endl;
}
void ProcessFieldsSAR::InitProcess()
{
if ((m_DumpType!=SAR_LOCAL_DUMP) && (m_DumpType!=SAR_1G_DUMP) && (m_DumpType!=SAR_10G_DUMP) && (m_DumpType!=SAR_RAW_DATA))
{
Enabled=false;
cerr << "ProcessFieldsSAR::InitProcess(): Error, wrong dump type... this should not happen... skipping!" << endl;
return;
}
if (m_Eng_Interface->GetInterpolationType()!=Engine_Interface_Base::CELL_INTERPOLATE)
{
cerr << "ProcessFieldsSAR::InitProcess(): Warning, interpolation type is not supported, resetting to CELL!" << endl;
SetDumpMode2Cell();
}
if ((m_DumpType==SAR_RAW_DATA) && (m_fileType!=HDF5_FILETYPE))
{
Enabled=false;
cerr << "ProcessFieldsSAR::InitProcess(): Error, wrong file type for dumping raw SAR data! skipping" << endl;
return;
}
ProcessFieldsFD::InitProcess();
if (Enabled==false) return;
//create data structures...
for (size_t n = 0; n<m_FD_Samples.size(); ++n)
{
m_E_FD_Fields.push_back(Create_N_3DArray<std::complex<float> >(numLines));
if (!m_UseCellKappa)
m_J_FD_Fields.push_back(Create_N_3DArray<std::complex<float> >(numLines));
}
}
int ProcessFieldsSAR::Process()
{
if (Enabled==false) return -1;
if (CheckTimestep()==false) return GetNextInterval();
if ((m_FD_Interval==0) || (m_Eng_Interface->GetNumberOfTimesteps()%m_FD_Interval!=0))
return GetNextInterval();
std::complex<float>**** field_fd = NULL;
unsigned int pos[3];
double T;
FDTD_FLOAT**** field_td=NULL;
//save dump type
DumpType save_dump_type = m_DumpType;
// calc E-field
m_DumpType = E_FIELD_DUMP;
field_td = CalcField();
T = m_Eng_Interface->GetTime(m_dualTime);
for (size_t n = 0; n<m_FD_Samples.size(); ++n)
{
std::complex<float> exp_jwt_2_dt = std::exp( (std::complex<float>)(-2.0 * _I * M_PI * m_FD_Samples.at(n) * T) );
exp_jwt_2_dt *= 2; // *2 for single-sided spectrum
exp_jwt_2_dt *= Op->GetTimestep() * m_FD_Interval; // multiply with timestep-interval
field_fd = m_E_FD_Fields.at(n);
for (pos[0]=0; pos[0]<numLines[0]; ++pos[0])
{
for (pos[1]=0; pos[1]<numLines[1]; ++pos[1])
{
for (pos[2]=0; pos[2]<numLines[2]; ++pos[2])
{
field_fd[0][pos[0]][pos[1]][pos[2]] += field_td[0][pos[0]][pos[1]][pos[2]] * exp_jwt_2_dt;
field_fd[1][pos[0]][pos[1]][pos[2]] += field_td[1][pos[0]][pos[1]][pos[2]] * exp_jwt_2_dt;
field_fd[2][pos[0]][pos[1]][pos[2]] += field_td[2][pos[0]][pos[1]][pos[2]] * exp_jwt_2_dt;
}
}
}
}
Delete_N_3DArray<FDTD_FLOAT>(field_td,numLines);
// calc J-field
if (!m_UseCellKappa)
{
m_DumpType = J_FIELD_DUMP;
field_td = CalcField();
T = m_Eng_Interface->GetTime(m_dualTime);
for (size_t n = 0; n<m_FD_Samples.size(); ++n)
{
std::complex<float> exp_jwt_2_dt = std::exp( (std::complex<float>)(-2.0 * _I * M_PI * m_FD_Samples.at(n) * T) );
exp_jwt_2_dt *= 2; // *2 for single-sided spectrum
exp_jwt_2_dt *= Op->GetTimestep() * m_FD_Interval; // multiply with timestep-interval
field_fd = m_J_FD_Fields.at(n);
for (pos[0]=0; pos[0]<numLines[0]; ++pos[0])
{
for (pos[1]=0; pos[1]<numLines[1]; ++pos[1])
{
for (pos[2]=0; pos[2]<numLines[2]; ++pos[2])
{
field_fd[0][pos[0]][pos[1]][pos[2]] += field_td[0][pos[0]][pos[1]][pos[2]] * exp_jwt_2_dt;
field_fd[1][pos[0]][pos[1]][pos[2]] += field_td[1][pos[0]][pos[1]][pos[2]] * exp_jwt_2_dt;
field_fd[2][pos[0]][pos[1]][pos[2]] += field_td[2][pos[0]][pos[1]][pos[2]] * exp_jwt_2_dt;
}
}
}
}
Delete_N_3DArray<FDTD_FLOAT>(field_td,numLines);
}
//reset dump type
m_DumpType = save_dump_type;
++m_FD_SampleCount;
return GetNextInterval();
}
void ProcessFieldsSAR::DumpFDData()
{
if (Enabled==false) return;
unsigned int pos[3];
unsigned int orig_pos[3];
float*** SAR = Create3DArray<float>(numLines);
double coord[3];
ContinuousStructure* CSX = Op->GetGeometryCSX();
CSProperties* prop = NULL;
CSPropMaterial* matProp = NULL;
double power;
float*** cell_volume = Create3DArray<float>(numLines);
float*** cell_density = Create3DArray<float>(numLines);
float*** cell_kappa = NULL;
if (m_UseCellKappa)
cell_kappa = Create3DArray<float>(numLines);
bool found_UnIsotropic=false;
// calculate volumes and masses for all cells
for (pos[0]=0; pos[0]<numLines[0]; ++pos[0])
{
orig_pos[0] = posLines[0][pos[0]];
for (pos[1]=0; pos[1]<numLines[1]; ++pos[1])
{
orig_pos[1] = posLines[1][pos[1]];
vector<CSPrimitives*> vPrims = Op->GetPrimitivesBoundBox(orig_pos[0], orig_pos[1], -1, CSProperties::MATERIAL);
for (pos[2]=0; pos[2]<numLines[2]; ++pos[2])
{
orig_pos[2] = posLines[2][pos[2]];
cell_volume[pos[0]][pos[1]][pos[2]] = Op->GetCellVolume(orig_pos);
cell_density[pos[0]][pos[1]][pos[2]] = 0.0;
Op->GetCellCenterMaterialAvgCoord(orig_pos, coord);
prop = CSX->GetPropertyByCoordPriority(coord, vPrims);
// prop = CSX->GetPropertyByCoordPriority(coord,CSProperties::MATERIAL);
if (prop!=0)
{
matProp = dynamic_cast<CSPropMaterial*>(prop);
if (matProp)
{
found_UnIsotropic |= !matProp->GetIsotropy();
cell_density[pos[0]][pos[1]][pos[2]] = matProp->GetDensityWeighted(coord);
if (m_UseCellKappa)
cell_kappa[pos[0]][pos[1]][pos[2]] = matProp->GetKappaWeighted(0,coord);
}
}
}
}
}
if (found_UnIsotropic)
cerr << "ProcessFieldsSAR::DumpFDData(): Warning, found unisotropic material in SAR calculation... this is unsupported!" << endl;
float* cellWidth[3];
for (int n=0;n<3;++n)
{
cellWidth[n]=new float[numLines[n]];
for (unsigned int i=0;i<numLines[n];++i)
cellWidth[n][i]=Op->GetDiscDelta(n,posLines[n][i])*Op->GetGridDelta();
}
if (m_DumpType == SAR_RAW_DATA)
{
if (m_fileType!=HDF5_FILETYPE)
{
cerr << "ProcessFieldsSAR::DumpFDData(): Error, wrong file type, this should not happen!!! skipped" << endl;
return;
}
size_t datasize[]={numLines[0],numLines[1],numLines[2]};
for (size_t n = 0; n<m_FD_Samples.size(); ++n)
{
stringstream ss;
ss << "f" << n;
if (m_HDF5_Dump_File->WriteVectorField(ss.str(), m_E_FD_Fields.at(n), datasize)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
}
m_HDF5_Dump_File->SetCurrentGroup("/CellData");
if (m_UseCellKappa==false)
cerr << "ProcessFieldsSAR::DumpFDData: Error, cell conductivity data not available, this should not happen... skipping! " << endl;
else if (m_HDF5_Dump_File->WriteScalarField("Conductivity", cell_kappa, datasize)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
if (m_HDF5_Dump_File->WriteScalarField("Density", cell_density, datasize)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
if (m_HDF5_Dump_File->WriteScalarField("Volume", cell_volume, datasize)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
}
else
{
SAR_Calculation SAR_Calc;
SAR_Calc.SetAveragingMethod(m_SAR_method, g_settings.GetVerboseLevel()==0);
SAR_Calc.SetDebugLevel(g_settings.GetVerboseLevel());
SAR_Calc.SetNumLines(numLines);
if (m_DumpType == SAR_LOCAL_DUMP)
SAR_Calc.SetAveragingMass(0);
else if (m_DumpType == SAR_1G_DUMP)
SAR_Calc.SetAveragingMass(1e-3);
else if (m_DumpType == SAR_10G_DUMP)
SAR_Calc.SetAveragingMass(10e-3);
else
{
cerr << "ProcessFieldsSAR::DumpFDData: unknown SAR dump type...!" << endl;
}
SAR_Calc.SetCellDensities(cell_density);
SAR_Calc.SetCellWidth(cellWidth);
SAR_Calc.SetCellVolumes(cell_volume);
SAR_Calc.SetCellCondictivity(cell_kappa); // cell_kappa will be NULL if m_UseCellKappa is false
for (size_t n = 0; n<m_FD_Samples.size(); ++n)
{
SAR_Calc.SetEField(m_E_FD_Fields.at(n));
if (!m_UseCellKappa)
SAR_Calc.SetJField(m_J_FD_Fields.at(n));
power = SAR_Calc.CalcSARPower();
SAR_Calc.CalcSAR(SAR);
if (m_fileType==VTK_FILETYPE)
{
stringstream ss;
ss << m_filename << fixed << "_f=" << m_FD_Samples.at(n);
m_Vtk_Dump_File->SetFilename(ss.str());
m_Vtk_Dump_File->ClearAllFields();
m_Vtk_Dump_File->AddScalarField(GetFieldNameByType(m_DumpType),SAR);
if (m_Vtk_Dump_File->Write()==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
}
else if (m_fileType==HDF5_FILETYPE)
{
stringstream ss;
ss << "f" << n;
size_t datasize[]={numLines[0],numLines[1],numLines[2]};
if (m_HDF5_Dump_File->WriteScalarField(ss.str(), SAR, datasize)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
float freq[1] = {(float)m_FD_Samples.at(n)};
if (m_HDF5_Dump_File->WriteAtrribute("/FieldData/FD/"+ss.str(),"frequency",freq,1)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
float pow[1] = {(float)power};
if (m_HDF5_Dump_File->WriteAtrribute("/FieldData/FD/"+ss.str(),"power",pow,1)==false)
cerr << "ProcessFieldsSAR::DumpFDData: can't dump to file...! " << endl;
}
else
cerr << "ProcessFieldsSAR::DumpFDData: unknown File-Type" << endl;
}
}
for (int n=0;n<3;++n)
delete[] cellWidth[n];
Delete3DArray(cell_volume,numLines);
Delete3DArray(cell_density,numLines);
Delete3DArray(cell_kappa,numLines);
Delete3DArray(SAR,numLines);
}
|