Specifies an electrical resistivity model for the charge conservation equation. The
electrical resistivity represents the ability of a material to resist the flow of current.
Electrical resistivity model applies to solid materials only.
Description
The resistivity model is used for both the charge conservation equation and for the
coupling of charge conservation to the energy equation. A brief description of both
models in the context of electrical resistivity is given below.
Conservation of charge is a fundamental physical principle and is given
by:
(1)
Where
is the current density vector (units:
A/m
2). Typically, it is assumed that the current density is
proportional to the electric field, where the proportionality constant is the
electrical conductivity (
) of the material. The current density can then be
expressed as:
(2)
where
(units: V) is the electric potential field. The
inverse of conductivity
is the electrical resistivity
of the material.
To couple the electrical model into the thermal simulation in
AcuSolve, a source term
(
S) is introduced into the energy equation. The
source term is based on Joule’s first law which says that the heat generated per
unit volume is equal to the product of current density and the electric field
(
). For example:
(3)
The available resistivity model is set in the
ELECTRICAL_RESISTIVITY_MODEL command and is referenced by
MATERIAL_MODEL commands. For
example:
ELECTRICAL_RESISTIVITY_MODEL( "my resistivity model" ) {
type = constant
electrical_resistivity = 2.9e-8
}
MATERIAL_MODEL( "my material model" ) {
electrical_resistivity_model = "my resistivity model"
}
The simplest case is type = constant. This
applies a constant resistivity in both the conservation of charge equation and the
source term in the energy equation. An example of a constant electrical resistivity
value is shown above.
The second type is a linear temperature dependent resistivity
(
type=
linear_temperature). For this model
the resistivity is a linear function of temperature given by:
(4)
Where
is the reference temperature
resistivity,
the temperature coefficient,
the local temperature and
the reference temperature. The temperature
coefficient describes the relative change of resistivity for a given change in
temperature.
In the input file a linear temperature dependent resistivity would be defined as
follows:
ELECTRICAL_RESISTIVITY_MODEL( "my resistivity model" ) {
type = linear_temperature
linear_temperature_reference_temperature = 293.15
linear_temperature_reference_temperature_resistivity = 1.754e-8
linear_temperature_temperature_coefficient = 0.0039
}
Electrical resistivity models of types piecewise_linear and
cubic_spline may be used to define electrical resistivity as a
function of a single independent variable. These types of electrical resistivity
models are consistent with other material models. Currently the only
curve_fit_variable supported is temperature.
An electrical resistivity model of type user_function may be used to
model more complex behaviors; see the AcuSolve
User-Defined Functions Manual for a detailed description of user-defined
functions.