You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: ctest -C Release -j 2 --output-on-failure -E shadetest # CI can't do GPU calcs at this time (the steps above get us close, but throws an exception on destruction)
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
[](https://github.com/cse-sim/cse/actions?query=branch%3Amaster)
1
+
[](https://github.com/cse-sim/cse/actions?query=branch%3Amain)
Copy file name to clipboardExpand all lines: doc/src/operation.md
+20-5Lines changed: 20 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,24 +11,39 @@ where:
11
11
*inputfile*
12
12
: specifies the name of the text input file for the run(s). If the filename has an extension other than ".cse" (the default), it must be included. The name of the file with weather data for the simulation(s) is given in this file (wfName= statement, see [Weather Data Items](#top-weather-data-items)).
13
13
14
+
14
15
*{switches}*
15
16
: indicates zero or more of the following:
16
17
17
18
- -D*name* defines the preprocessor symbol *name* with the value "". Useful for testing with `#ifdef name`, to invoke variations in the simulation without changing the input file. The CSE preprocessor is described "[The Preprocessor](#the-preprocessor)".
18
19
19
20
- -D*name*=*value* defines the preprocessor symbol *name* with the specified *value*. *Name* can then be used in the input file to allow varying the simulation without changing the input file -- see "[The Preprocessor](#the-preprocessor)" for more information. The entire switch should be enclosed in quotes if it contains any spaces -- otherwise the command processor will divide it into two arguments and CSE will not understand it.
20
21
21
-
- -b batch mode: CSE will never stop for a response from the user when an error occurs. Error messages may thus scroll off the screen, but will all be in the error message file.
22
+
- -U*name* undefines the preprocessor symbol *name*.
23
+
24
+
- -i*path;path;path* specifies directories where CSE looks for input and include files.
25
+
26
+
- -b batch mode: suppresses all prompts for user input. Currently there are no prompts implemented in CSE. -b is retained in case prompts are added in the future. It is good practice to include -b in batch script CSE invocations.
27
+
28
+
- -n suppresses screen display of warning messages. When -n is specified, warning messages are reported only to the error file.
22
29
23
30
- -p display all the class and member names that can be "probed" or accessed in CSE expressions. "Probes" are described in "[Probes](#probes)". Use with command processor redirection operator ">" to obtain a report in a file. *Inputfile* may be given or omitted when -p is given.
24
31
25
-
- -q similar to -p, but displays additional member names that cannot be probed or would not make sense to probe in an input file (development aid).
32
+
- -p1 similar to -p, but displays additional member names that cannot be probed or would not make sense to probe in an input file (development aid).
33
+
34
+
- -c display all input names.
35
+
36
+
- -c1 display input names with build-independent details from CSE CULT tables (development aid).
37
+
38
+
- -c2 display input names with all details from CSE CULT tables (development aid).
26
39
27
40
- -x specifies report test prefix; see TOP repTestPfx. The -x command line setting takes precedence over the input file value, if any.
28
41
29
-
<!--
30
-
TODO: Review all command line switches and update. See cne3() and pp.cpp:ppClargIf() at least.
31
-
-->
42
+
- -t*nn* specifies internal testing option bits (development aid). The following values should be combined bit-wise to determine *nn*. \
43
+
1: Omit directory paths from file names in reports, yielding location-independent report files suitable for text comparison.\
44
+
2: Include detailed timing information in the log file (default is summary only).
45
+
46
+
32
47
## Locating Files
33
48
34
49
As with any program, in order to invoke CSE, the directory containing CSE.EXE must be the current directory, or that directory must be on the operating system path, or you must type the directory path before CSE.
Copy file name to clipboardExpand all lines: doc/src/output-reports.md
+39Lines changed: 39 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,45 @@ A Meter Report displays the energy use of a METER object, a user-defined "device
22
22
23
23
Meters account for energy use in pre-defined categories, called *end uses, that are documented with METER.*
24
24
25
+
## Air Flow Meter Report
26
+
27
+
An Air Flow Meter Report displays air flow values accumulated by an AFMETER that is associated with one or more ZONEs. The report provides insight into the results of the AirNet pressure model.
28
+
29
+
AFMETER maintains values for subhour, hour, day, month, and year intervals. Values are standard cfm (0.075 lb/ft3). Values for intervals longer than subhour are averages.
30
+
31
+
Flows are categorized by 1) direction of flow (+ = into zone(s), - = out of zone(s)); IZXFER izAFCat tags; and 3) type of source or sink of the flow (ambient, unconditioned zone, conditioned zone).
32
+
33
+
The following items are displayed (using the abbreviations shown in the report headings). The "+/-" notation indicates that two columns are included, one for each direction of flow. For example, "InfX+/-" means the report includes columns "InfX+" (infiltration flows into the zone) and "InfX-" (infiltration flows out of the zone).
The Energy Balance Report displays the temperature and sensible and latent heat flows into and out of the air of a single zone. Sign conventions assume that a positive flow increases the air temperature. Heat flow from a warm mass element such as a concrete wall into the zone air is defined as a positive flow, heat flow from air into mass is negative. Solar gain into the zone is defined as a positive heat flow. Solar gain that is incident on and absorbed directly into a mass element is shown as both a positve in the SOLAR column (gain to the zone) and a negative in the MASS column (lost from the zone to the mass).
0 commit comments