如何输出场最大温度值这个文件
-
functions { cellSource1 { type cellSource; functionObjectLibs ("libfieldFunctionObjects.so"); enabled yes; outputControl outputTime; log yes; valueOutput yes; source all; operation max; fields ( T ); } }
这个加到 controlDict 里就能输出最大值了。
其实还有一种办法,既然你说在终端的输出信息中包括了最大和最小温度,那么如果你保存了终端输出信息,你还可以用 linux 的工具来从那些众多的信息中将你想要的最大和最小信息提取出来,
比如,假设你的文件名为 logcat log | grep "max(" | sed 's/^\ *//g' | cut -d ' ' -f 5
感兴趣的话可以试试这个命令,可能不能完全适合你的情况,你需要做些修改。