Browse Source

inp files for hantenna added

add-code-of-conduct-1
Trevor Irons 5 years ago
parent
commit
e28d06fde4

+ 3
- 1
Modules/FDEM1D/examples/CMakeLists.txt View File

@@ -26,7 +26,7 @@ add_executable( Hantenna Hantenna.cpp  )
26 26
 target_link_libraries(  Hantenna  "lemmacore" "fdem1d")
27 27
 set_property(TARGET Hantenna PROPERTY CXX_STANDARD 14)
28 28
 
29
-INSTALL_TARGETS( "/share/FEM1D/"
29
+INSTALL_TARGETS( "/share/FDEM1D/"
30 30
 	LayeredEarthEM 
31 31
 	FieldPoints
32 32
 	PolygonalWireAntenna
@@ -34,3 +34,5 @@ INSTALL_TARGETS( "/share/FEM1D/"
34 34
     CircularLoop
35 35
 	Hantenna
36 36
 )
37
+
38
+install (DIRECTORY inp  DESTINATION "${CMAKE_INSTALL_PREFIX}/share/FDEM1D/" )

+ 5
- 0
Modules/FDEM1D/examples/inp/cond.inp View File

@@ -0,0 +1,5 @@
1
+3              // Number of NON-AIR layers
2
+2  10         // resistivity [Ohm-m], thickness [m] of top layer
3
+.2 20         // resistivity [Ohm-m], thickness [m] of middle layer
4
+.3            // resistivity [Ohm-m] of infinite thickness bottom layer
5
+

+ 16
- 0
Modules/FDEM1D/examples/inp/config.inp View File

@@ -0,0 +1,16 @@
1
+// Hankel Transform type uncomment desired
2
+//FHTKEY51       // Key's   51 point FHT
3
+//FHTKEY101      // Key's  101 point FHT
4
+//FHTKEY201      // Key's  201 point FHT
5
+//FHTKONG61      // Kong's  61 point FHT
6
+FHTKONG121     // Kong's 121 point FHT
7
+//FHTKONG241	 // Kong's 241 point FHT
8
+//ANDERSON801    // Anderson's 801 Point FHT, with lagged convolution
9
+//CHAVE          // Chave's Gaussian Quadrature
10
+//QWEKEY         // Key's Gaussian Qwuadrature with extraploation
11
+//IRONS
12
+.1               // minimum dipole ratio
13
+1e-5             // minumum dipole moment
14
+1e1              // maximum dipole moment
15
+
16
+// vim: filetype=c :

+ 5
- 0
Modules/FDEM1D/examples/inp/points.inp View File

@@ -0,0 +1,5 @@
1
+20 20 20          // number of points (nx, ny, nz) in (northing, easting, depth) z pos down
2
+-100 -100 1e-1    // offset in x, y, z (location of first calculation)
3
+5 4 3 2 1 .5 .5 .5 .5 .5 .5 .5 .5 .5 1 2 3 4 5 // x direction point spacing, in metres, (nx-1) 
4
+5 4 3 2 1 .5 .5 .5 .5 .5 .5 .5 .5 .5 1 2 3 4 5 // y direction point spacing, in metres, (ny-1) 
5
+.1 .1 .1 2 2 2 3 3 3 4 4 4 4 4 4 5 5 5 5       // z direction point spacing, in metres, (nz-1) 

+ 8
- 0
Modules/FDEM1D/examples/inp/trans.inp View File

@@ -0,0 +1,8 @@
1
+5	    // number of points in transmitter
2
+ 50  50     // coordinates of first point   (northing, easting)
3
+150  50     // coordinates of second point
4
+150 150     //          |
5
+ 50 150     //          V 
6
+ 50  50     // coordinates of last point, same as first for closed loop
7
+1000.5      // Frequency of Tx [Hz]
8
+1.          // Current in loop, [Amperes]

Loading…
Cancel
Save