Commit effdb9b35be29bec6cd83f7f7d8b9906098090db
1 parent
b9989537
Exists in
master
titl angle
Showing
2 changed files
with
16 additions
and
0 deletions
Show diff stats
geopack/src/Modif.for
... | ... | @@ -19,3 +19,16 @@ |
19 | 19 | CALL T96_01 (IOPT,PARMOD,PSI,X,Y,Z,BX,BY,BZ) |
20 | 20 | |
21 | 21 | END |
22 | + | |
23 | + SUBROUTINE RECALC_08_MODIFIED (IYEAR,IDAY,IHOUR,MIN,ISEC,VGSEX, | |
24 | + * VGSEY,VGSEZ,TILT_out) | |
25 | + | |
26 | + EXTERNAL RECALC_08 | |
27 | + | |
28 | + COMMON /GEOPACK1/ PSI | |
29 | + | |
30 | + CALL RECALC_08 (IYEAR,IDAY,IHOUR,MIN,ISEC,VGSEX,VGSEY,VGSEZ) | |
31 | + | |
32 | + TILT_out = PSI | |
33 | + | |
34 | + END | ... | ... |
geopack/src/include/geopack.hh
... | ... | @@ -7,6 +7,9 @@ extern "C" { |
7 | 7 | |
8 | 8 | void recalc_08_(int* iyr, int *iday, int* ihour, int* min, int* isec, |
9 | 9 | float* V_GSE_X_i, float* V_GSE_Y_i, float* V_GSE_Z_i); |
10 | + | |
11 | + void recalc_08_modified_(int* iyr, int *iday, int* ihour, int* min, int* isec, | |
12 | + float* V_GSE_X_i, float* V_GSE_Y_i, float* V_GSE_Z_i, float* PSI); | |
10 | 13 | |
11 | 14 | void gswgse_08_(float* sat_pos_GSW_X_i, float* sat_pos_GSW_Y_i, float* sat_pos_GSW_Z_i, |
12 | 15 | float* sat_pos_GSE_X_i, float* sat_pos_GSE_Y_i, float* sat_pos_GSE_Z_i, int* transform_flag); | ... | ... |