This repository was archived by the owner on Apr 15, 2024. It is now read-only.
File tree 4 files changed +48
-9
lines changed
4 files changed +48
-9
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,32 @@ headlines of the changes since the last version. For more detailed
6
6
information on changes, read the 'ChangeLog' file from the source
7
7
release.
8
8
9
+ * 5.17
10
+
11
+ ** New 'post-process' program to convert daisy log files.
12
+
13
+ The program converts a Daisy log file into a Daisy log file. The main
14
+ function is to select a subset of the data, but it may also convert
15
+ between units.
16
+
17
+ (defprogram convert post-process
18
+ ;; Select a subset of a ldf file.
19
+ (file "Estrup-content-Bromide.dlf") ;Input file.
20
+ (where "post.dlf") ;Output file.
21
+ ;; Limit x position.
22
+ (left 300 [cm])
23
+ (right 400 [cm])
24
+ ;; Limit depth.
25
+ (top -50 [cm])
26
+ (bottom -100 [cm])
27
+ ;; Limit in time.
28
+ (after 2000 1 1)
29
+ (before 2001 1 1)
30
+ ;; Convert unit.
31
+ (dimension [kg/m^3]))
32
+
33
+ (run convert)
34
+
9
35
* 5.16
10
36
11
37
** New action 'spray_surface'.
Original file line number Diff line number Diff line change @@ -2,14 +2,6 @@ TODO --- things that needs to be done with Daisy -*- org -*-
2
2
3
3
* Signe: Udv�lg s�jle af D2 fil.
4
4
5
- ** 1D output (by default) if only one column is selected.
6
-
7
- ** time_columns
8
-
9
- ** header
10
-
11
- ** option to force 1D? weighted average in specified interval?
12
-
13
5
** Dokumenter
14
6
15
7
* Osvaldo C & N
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LIBS = cz-sample.dai cz-management.dai \
4
4
it-management.dai it-soil.dai dk-soil.dai log-sample.dai \
5
5
init-soil.dai pedo-soil.dai irrigation.dai dk-management.dai \
6
6
dk-veg-man.dai
7
- SETUPS = test-organic.dai rootmatch.dai \
7
+ SETUPS = test-post.dai test- organic.dai rootmatch.dai \
8
8
test-refman.dai genweather.dai test-GP2D.dai test-colloids.dai \
9
9
test-prd.dai test-aba.dai OpenMI_simple.dai OpenMI_management.dai \
10
10
heat-properties.dai batch.dai sample.dai test.dai DrainDrying.dai \
Original file line number Diff line number Diff line change
1
+ ;;; test-post.dai --- Test Daisy post processing of dlf files.
2
+
3
+ (defprogram convert post-process
4
+ ;; Select a subset of a ldf file.
5
+ (file "Estrup-content-Bromide.dlf") ;Input file.
6
+ (where "post.dlf") ;Output file.
7
+ ;; Limit x position.
8
+ (left 300 [cm])
9
+ (right 400 [cm])
10
+ ;; Limit depth.
11
+ (top -50 [cm])
12
+ (bottom -100 [cm])
13
+ ;; Limit in time.
14
+ (after 2000 1 1)
15
+ (before 2001 1 1)
16
+ ;; Convert unit.
17
+ (dimension [kg/m^3]))
18
+
19
+ (run convert)
20
+
21
+ ;;; test-post.dai ends her.
You can’t perform that action at this time.
0 commit comments