Skip to content
On this page

Dielectric Permittivity

The dielectric calculation can give you

  1. effective permittivity of the system
  2. electric field, electric displacement, electric polarization distribution given an external electric field.

Solved Equation

D=0\nabla \cdot D = 0, where D=ϵ0ϵrED = \epsilon_0 \epsilon_r E

  • D Electrical displacement
  • ϵ\epsilonϵ0\epsilon_0 vaccum permittivity, ϵr\epsilon_r relative permittivity
  • E Electric field

Input options

The following options are needed for the dielectric calculation.

  • input->system The choice of calculation system must be dielectric
  • input->external->electricField External applied electric field (V/m), if you want to calculate the electric field distribution within the composite
    • x Applied electric field along x
    • y Applied electric field along y
    • z Applied electric field along z
  • input->solver->ref A property tensor for the reference phase called permittivity is needed. Tensor definition is explained [here]

<system>
    <type>dielectric</type>
    <external>
        <electricField>
            <x>0</x>
            <y>0</y>
            <z>2e7</z>
        </electricField>
    </external>
    <solver>
        <ref>
            <name>permittivity</name>
            <rank>2</rank>
            <pointGroup>custom</pointGroup>
            <component>
                <value>100</value>
                <index>11</index>
                <index>22</index>
                <index>33</index>
            </component>
        </ref>
    </solver>
</system>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

Output files

There are 5 possible output files for the dielectric calculation

  1. out_effective_permittivity.csv The effective relative permittivity
  2. out_electric_potential.vti The electric potential
  3. out_electric_field.vti The electric field
  4. out_electric_displacement.vti The electric displacement
  5. out_polarization.vti The electric polarization

This website is developed using vitepress.