Skip to content
Snippets Groups Projects
Commit 51c743cc authored by simon-ast's avatar simon-ast
Browse files

Restructuring

parent 601d3260
No related branches found
No related tags found
1 merge request!1Name adjustments
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
Showing
with 17 additions and 9 deletions
...@@ -4,21 +4,26 @@ ...@@ -4,21 +4,26 @@
BIN_LENGTH=0.1 BIN_LENGTH=0.1
# ANALYSE WHOLE DATA SET AND BIN ACCORDING TO VARIABLE ABOVE # ANALYSE WHOLE DATA SET AND BIN ACCORDING TO VARIABLE ABOVE
echo "EXECUTING MAIN.PY" echo "EXECUTING DATA EVALUATION"
python3 main_data.py $BIN_LENGTH python3 data_eval.py $BIN_LENGTH
echo echo
# REWRITE EACH BINNED FILE INTO BINNED STATISTICS FILE # REWRITE EACH BINNED FILE INTO BINNED STATISTICS FILE
echo "EXECUTING BINNED_STATS.PY" echo "EXECUTING STATISTICS ON BINNED DATA"
python3 binned_stats.py $BIN_LENGTH python3 binned_stats.py $BIN_LENGTH
echo echo
# REITERATE PROCESS, BUT SPLIT BETWEEN APPROACH AND RECESSION (INGRESS AND EGRESS) # REITERATE PROCESS, BUT SPLIT BETWEEN APPROACH AND RECESSION (INGRESS AND EGRESS)
echo "EXECUTING APPROACH_RECESSION.PY" echo "EXECUTING INGRESS / EGRESS ANALYSIS"
python3 ingress_egress.py $BIN_LENGTH python3 ingress_egress.py $BIN_LENGTH
echo echo
# GENERATE FINAL PLOTS # GENERATE FINAL PLOTS
echo "EXECUTING FINAL_PLOTS.PY" echo "GENERATING PLOTS OF OBSERVATION DATA"
python3 obs_data_plots.py python3 observation_plots.py
echo
# GENERATE FINAL PLOTS
echo "GENERATING COMPARISON PLOTS FOR PAPER"
python3 comparison_plots.py
echo echo
...@@ -33,6 +33,7 @@ def approach_recession_slicing(encounter_num, data: tp.Dict): ...@@ -33,6 +33,7 @@ def approach_recession_slicing(encounter_num, data: tp.Dict):
# Initialize empty temporary dictionaries # Initialize empty temporary dictionaries
data_1 = {} data_1 = {}
data_2 = {} data_2 = {}
designation = "unclear"
# Determine the index of the turn-around point # Determine the index of the turn-around point
tap = find_turn_around(data["r"]) tap = find_turn_around(data["r"])
......
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
...@@ -11,9 +11,11 @@ The data is reduced according to the conservative boundaries of the [SWEAP User ...@@ -11,9 +11,11 @@ The data is reduced according to the conservative boundaries of the [SWEAP User
## Structure ## Structure
The code execution routine can be read in the bash-script `evaluation_run.sh`. It sets the size of the radial bins as a global variable and then: The code execution routine can be read in the bash-script `evaluation_run.sh`. It sets the size of the radial bins as a global variable and then:
1. `main_data.py`: Reads in the observational data files, sortes ALL data into distance bins and writes data file for each distance bin into `STATISTICS/BINNED_DATA` 1. `data_eval.py`: Reads in the observational data files, sortes ALL data into distance bins and writes data file for each distance bin into `STATISTICS/BINNED_DATA`
2. `binnded_stats.py`: Takes all files in previously mentioned folder and creates a new file, `PSP_statistics.dat`, with mean+stddev and median+q1/q3 for each major parameter and distance bin. Also creates bar charts for each major parameter and distance bin 2. `binnded_stats.py`: Takes all files in previously mentioned folder and creates a new file, `PSP_statistics.dat`, with mean+stddev and median+q1/q3 for each major parameter and distance bin. Also creates bar charts for each major parameter and distance bin
3. `ingress_egress.py`: Similar as above, but the data is split between ingress and egress phase for each encounter 3. `ingress_egress.py`: Similar as above, but the data is split between ingress and egress phase for each encounter
4. `obs_data_plots.py`: Creates median+stddev and mean+q1/q3 plots for all three major parameters 4. `observation_plots.py`: Creates median+stddev and mean+q1/q3 plots for all three major parameters
5. `comparison_plots.py`: Collects the evaluated measurement data and creates plots together with a radial profile of the simulation results.
Finally, `comp_data_plots.py`collects the evaluated measurement data and creates plots together with a radial profile of the simulation results.
\ No newline at end of file ## Selected Results
\ No newline at end of file
TESTING/Test.png

34.1 KiB

TESTING/plot_logT.png

56.9 KiB

TESTING/plot_vr.png

64.7 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment