813 | | * the file can begin with an arbitrary number of lines beginning with a # where header information can be placed |
814 | | * a line beginning with ''# time'' indicates that a profile data set at time step ''time'' follows afterwards |
815 | | * profile data following ''# time'' is column separated and has to be in the following sequence: height information z, nudging time scale tnudge, prognostic variables u, v, w, pt, q |
816 | | The height information does not have to match PALM's grid. A vertical interpolation to the zu-grid of PALM is conducted in {{{init_nudge}}}. |
| 813 | * the file can begin with an arbitrary number of lines beginning with a # where for example header information can be stored |
| 814 | * a line beginning with ''# time'' indicates the beginning of a profile data set at time step ''time'' |
| 815 | * profile data following ''# time'' has to be column separated and in the following sequence: height information z, nudging time scale tnudge, prognostic variables u, v, w, pt, q\\ |
| 816 | Example:\\ |
| 817 | {{{ |
| 818 | # Data obtained from COSMO |
| 819 | # z (m) tnudge (s) u (m/s) v (m/s) w (m/s) pt (K) q (kg/kg) |
| 820 | # 0.00 |
| 821 | 9.8844 21600.0 2.211829 0.168822 0.000000 286.332550 0.005271599 |
| 822 | 35.2711 21600.0 2.436955 0.222636 0.000000 286.030457 0.005201364 |
| 823 | 72.1238 21600.0 2.554981 0.271909 0.000000 285.889221 0.005164026 |
| 824 | 120.7819 21600.0 2.637910 0.324144 0.000000 285.801941 0.005136034 |
| 825 | 181.6059 21600.0 2.706073 0.385106 0.000000 285.736511 0.005109468 |
| 826 | 254.9213 21600.0 2.765020 0.458478 0.000000 285.682312 0.005080691 |
| 827 | . . . . . . . |
| 828 | . . . . . . . |
| 829 | . . . . . . . |
| 830 | 6194.9898 21600.0 -9.649567 0.387706 0.000000 311.685211 0.000103816 |
| 831 | 6671.3776 21600.0 -12.560919 1.740657 0.000000 312.617035 0.000107252 |
| 832 | . . . . . . . |
| 833 | . . . . . . . |
| 834 | . . . . . . . |
| 835 | |
| 836 | |
| 837 | # 10800.00 |
| 838 | 9.8859 21600.0 3.025908 -1.133305 0.000000 289.746887 0.005160137 |
| 839 | 35.2744 21600.0 3.374598 -1.219589 0.000000 289.309265 0.005070049 |
| 840 | 72.1311 21600.0 3.543518 -1.232619 0.000000 289.099548 0.005022414 |
| 841 | 120.8095 21600.0 3.650265 -1.214710 0.000000 288.969696 0.004989379 |
| 842 | 181.6530 21600.0 3.726033 -1.173101 0.000000 288.874939 0.004960957 |
| 843 | 254.9995 21600.0 3.778988 -1.106899 0.000000 288.799438 0.004932987 |
| 844 | . . . . . . . |
| 845 | . . . . . . . |
| 846 | . . . . . . . |
| 847 | 6194.6294 21600.0 -9.693629 4.998911 0.000000 311.791534 0.000099219 |
| 848 | 6670.9940 21600.0 -11.261787 4.859829 0.000000 312.678223 0.000146732 |
| 849 | . . . . . . . |
| 850 | . . . . . . . |
| 851 | . . . . . . . |
| 852 | }}} |
| 853 | The height information does not have to match PALM's grid. A linear, vertical interpolation to the zu-grid of PALM is conducted in {{{init_nudge}}}. A linear, temporal interpolation of the profile data is conducted in the subroutine {{{nudge}}}. |