File: constant_ex_arbitrary_order.xmds

package info (click to toggle)
xmds2 3.1.0%2Bdfsg2-10
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 42,580 kB
  • sloc: python: 64,048; cpp: 4,868; ansic: 1,463; makefile: 144; sh: 54; javascript: 8
file content (67 lines) | stat: -rw-r--r-- 1,784 bytes parent folder | download | duplicates (7)
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
<?xml version="1.0" encoding="UTF-8"?>
<simulation xmds-version="2">
  <testing>
    <xsil_file name="constant_ex_arbitrary_order.xsil" expected="constant_ex_arbitrary_order_expected.xsil" absolute_tolerance="1e-7" relative_tolerance="1e-5" />
  </testing>
  
  <name>constant_ex_arbitrary_order</name>
  <author>Graham Dennis</author>
  <description>
    Simple one-dimensional diffusion using the EX operator
  </description>
  
  <features>
    <benchmark />
    <bing />
    <fftw plan="estimate" />
  </features>
  
  <geometry>
    <propagation_dimension> t </propagation_dimension>
    <transverse_dimensions>
      <dimension name="y" lattice="128" domain="(-1.0, 1.0)" />
    </transverse_dimensions>
  </geometry>
  
  <vector name="main" initial_basis="y" type="complex">
    <components>
      phi1 phi2
    </components>
    <initialisation>
      <![CDATA[
        phi1 = exp(-y*y);
        phi2 = exp(-5.0*y*y);
      ]]>
    </initialisation>
  </vector>
  
  <sequence>
    <integrate algorithm="RK4" interval="10.0" steps="24000" tolerance="1e-5">
      <samples>24</samples>
      <operators>
        <operator kind="ex" constant="yes">
          <operator_names>L</operator_names>
          <![CDATA[
            L = -0.02*ky*ky;
          ]]>
        </operator>
        <integration_vectors>main</integration_vectors>
        <![CDATA[
          dphi1_dt = L[phi1];
          dphi2_dt = L[phi2];
        ]]>
      </operators>
    </integrate>
  </sequence>
  
  <output format="binary">
      <sampling_group basis="y" initial_sample="yes">
        <moments>dens1 dens2</moments>
        <dependencies>main</dependencies>
        <![CDATA[
          dens1 = mod2(phi1);
          dens2 = mod2(phi2);
        ]]>
      </sampling_group>
  </output>
</simulation>