関数TF_write_station マニュアル

(The documentation of function TF_write_station)

Last Update: 2024/2/20


◆機能・用途(Purpose)

1つの観測点の情報を出力する。
Output information on a station.


◆形式(Format)

#include "waterPML_sub/write.h"
inline void TF_write_station
(const struct waterPML_parameters parameters,const int is,
 const struct TF_station station)


◆引数(Arguments)

parameters 関数 TF_set_parameters, TF_read_stations, TF_count_snapshot によってメンバの値の設定を済ませた構造体。
A structure whose members were set by functions TF_set_parameters, TF_read_stations, and TF_count_snapshot.
is 出力する観測点の番号。
An index of the station to output.
station 出力する観測点の情報。 is番目の観測点に関する 関数TF_read_stations の戻り値を与える。
The information on the station to output; use the return value of function TF_read_stations for isth station.


◆動作(Behaviour)

引数stationが表す観測点の情報を このファイル に出力する。
Output the information on the station by argument station into this file.


◆補足(Additional notes)

この関数では1度の呼び出しにつき1つの観測点の情報しか出力しないため、 使用した全ての観測点についてループを回す必要がある。 なお、2つ目以降の観測点(引数is\(\geq 1\))の場合には 既存ファイルへの追加書き込みとなる。
The information on only one station are written in each call of this function. Therefore, this function needs to be called repeatedly for every station. In case of 2nd or later stations (i.e., when the argument is greater than or equal to 1), the information is added to an existing file.