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
|
#include "ATC_Transfer.h"
#include "WeakEquationPhononTemperature.h"
#include "Material.h"
#include <iostream>
#include <fstream>
namespace ATC {
//==============================================================
// Class WeakEquationElectronTemperature
//==============================================================
//--------------------------------------------------------------
// Constructor
//--------------------------------------------------------------
WeakEquationPhononTemperature::WeakEquationPhononTemperature()
: WeakEquation(DYNAMIC_PDE,TEMPERATURE,1)
{}
//--------------------------------------------------------------
// Destructor
//--------------------------------------------------------------
WeakEquationPhononTemperature::~WeakEquationPhononTemperature(void)
{}
//---------------------------------------------------------------------
// compute total energy
//---------------------------------------------------------------------
void WeakEquationPhononTemperature::E_integrand(
const FIELD_MATS &fields,
const GRAD_FIELD_MATS & /* gradFields */,
const Material * material,
DENS_MAT &energy) const
{
material->thermal_energy(fields, energy);
}
//---------------------------------------------------------------------
// compute heat capacity
//---------------------------------------------------------------------
void WeakEquationPhononTemperature::M_integrand(
const FIELD_MATS &fields,
const Material * material,
DENS_MAT & capacity ) const
{
material->heat_capacity(fields, capacity);
}
//--------------------------------------------------------------
// compute heat flux
//--------------------------------------------------------------
void WeakEquationPhononTemperature::B_integrand(
const FIELD_MATS &fields,
const GRAD_FIELD_MATS &gradFields,
const Material * material,
DENS_MAT_VEC &flux) const
{
material->heat_flux(fields, gradFields, flux);
}
//==============================================================
// Class WeakEquationPhononTemperatureExchange
//==============================================================
//--------------------------------------------------------------
// Constructor
//--------------------------------------------------------------
WeakEquationPhononTemperatureExchange::WeakEquationPhononTemperatureExchange()
: WeakEquationPhononTemperature()
{}
//--------------------------------------------------------------
// Destructor
//---------------------------------------------------------------------
WeakEquationPhononTemperatureExchange::~WeakEquationPhononTemperatureExchange(void)
{}
//---------------------------------------------------------------------
// compute energy
//---------------------------------------------------------------------
void WeakEquationPhononTemperatureExchange::E_integrand(
const FIELD_MATS &fields,
const GRAD_FIELD_MATS &gradFields,
const Material * material,
DENS_MAT &energy ) const
{
WeakEquationPhononTemperature::E_integrand(fields,gradFields,material,energy);
}
//---------------------------------------------------------------------
// compute heat capacities
//---------------------------------------------------------------------
void WeakEquationPhononTemperatureExchange::M_integrand(
const FIELD_MATS &fields,
const Material * material,
DENS_MAT & density ) const
{
WeakEquationPhononTemperature::M_integrand(fields,material,density);
}
//---------------------------------------------------------------------
// compute heat fluxes
//---------------------------------------------------------------------
void WeakEquationPhononTemperatureExchange::B_integrand(
const FIELD_MATS &fields,
const GRAD_FIELD_MATS &gradFields,
const Material * material,
DENS_MAT_VEC &flux) const
{
WeakEquationPhononTemperature::B_integrand(fields,gradFields,material,flux);
}
//---------------------------------------------------------------------
// compute exchange fluxes
//---------------------------------------------------------------------
bool WeakEquationPhononTemperatureExchange::N_integrand(
const FIELD_MATS &fields,
const GRAD_FIELD_MATS &gradFields,
const Material * material,
DENS_MAT &flux) const
{
bool has = material->electron_phonon_exchange(fields, flux);
has = has || material->electron_drag_power(fields, gradFields, flux);
return has;
}
}; // end namespace
|