-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated readme.md, added Spectrem example, and updated documentation
- Loading branch information
Showing
7 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Column Label Description and Units | ||
1 tx_height TX height above ground m | ||
2 tx_roll TX roll degrees, left wing up is +ve | ||
3 tx_pitch TX pitch degrees, nose down is +ve | ||
4 tx_yaw TX yaw degrees degrees, turn left is +ve | ||
5 txrx_dx TX-RX inline separation m, RX in front of TX +ve | ||
6 txrx_dy TX-RX transverse separation m, RX left of TX +ve | ||
7 txrx_dz TX-RX vertical separation m, RX above TX is +ve | ||
8 rx_roll RX roll degrees degrees, left wing up is +ve | ||
9 rx_pitch RX pitch degrees degrees, nose down is +ve | ||
10 rx_yaw RX yaw degrees degrees, turn left is +ve | ||
11 N number of layers | ||
12 cond:1 layer 1 conductivity S/m | ||
13 cond:2 layer 2 conductivity S/m | ||
... | ||
12+N-1 cond:N layer N conductivity S/m | ||
12+N thickness:1 layer 1 thickness m | ||
12+N+1 thickness:2 layer 2 thickness m | ||
... | ||
12+2N-1 thickness:N-1 layer N-1 thickness m | ||
|
3 changes: 3 additions & 0 deletions
3
examples/spectrem/gaforwardmodeltdem/input_model_spectrem.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
90 0 0 0 -123 0 -36 0 0 0 1 0.100 | ||
90 0 0 0 -123 0 -36 0 0 0 2 0.200 0.001 20 | ||
90 0 0 0 -123 0 -36 0 0 0 3 0.010 0.200 0.001 20 20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
echo off | ||
|
||
REM Add executable and FFTW directories to yo search path | ||
REM (Ideally you would add these to your PATH environment variable) | ||
set path=..\..\..\bin\x64\Release\;%path% | ||
set path=..\..\..\third_party\fftw3.2.2.dlls\64bit;%path% | ||
|
||
gaforwardmodeltdem.exe spectrem.con | ||
|
||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/tcsh | ||
|
||
gaforwardmodeltdem.exe spectrem.con | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Control Begin | ||
SystemFile = ../stmfiles/Spectrem-ppm.stm | ||
InputModelFile = input_model_spectrem.txt | ||
OutputDataFile = output_spectrem.asc | ||
OutputDataHeader = output_spectrem.hdr | ||
Control End |