関数create_timefunc_damposc マニュアル

(The documentation of function create_timefunc_damposc)

Last Update: 2021/12/8


◆機能・用途(Purpose)

時間関数damp-osc(下記(\ref{eq.definition})式)に基づく時系列データを作成する。 エラーチェック機能が不十分なのでこの関数を直接用いてはならない。 この関数は関数create_timefuncからの内部呼び出し用である。
Create a time series data based on a time function damp-osc defined by eq. (\ref{eq.definition}). Do not directly call this function because error checks are insufficient. This function is for an internal call from function create_timefunc.


◆時間関数の定義 (Definition of the time function)

概要(Overview)
一定周期で振動しながら振幅が指数関数で小さくなっていく、 いわゆる減衰振動の関数である。
An oscillation at a constant frequency with an exponentially decaying amplitude (i.e., damped oscillation).


定義(Definition)
\[\begin{equation} f(t)= \begin{cases} 0 & (t<0) \\ \sin\frac{2\pi t}{\tau_p}e^{-t/\tau_s} & (t\geq 0) \end{cases} \label{eq.definition} \end{equation}\]

1階導関数 (1st order derivative)
\[\begin{eqnarray} \frac{df(t)}{dt}= \begin{cases} 0 & (t<0) \\ \left(\frac{2\pi}{\tau_p}\cos\frac{2\pi t}{\tau_p} -\frac{1}{\tau_s}\sin\frac{2\pi t}{\tau_p}\right)e^{-t/\tau_s} & (t\geq 0) \end{cases} \label{eq.derivative} \end{eqnarray}\]

1階積分 (1st order integral)
\[\begin{eqnarray} F_1(t) &=& \int_{-\infty}^t f(t’)dt’ \nonumber \\ &=& \begin{cases} 0 & (t<0) \\ \frac{\tau_s}{1+\left(\frac{2\pi \tau_s}{\tau_p}\right)^2} \left[ \frac{2\pi \tau_s}{\tau_p} -\left(\sin\frac{2\pi t}{\tau_p} +\frac{2\pi \tau_s}{\tau_p}\cos\frac{2\pi t}{\tau_p}\right) e^{-t/\tau_s} \right] & (t\geq 0) \end{cases} \label{eq.integral1} \end{eqnarray}\]
ここで積分定数は\(t<0\)で\(F_1(t)=0\)、 \(t=0\)で\(F_1(t)\)が連続となるように与えた。
Here, the integration constants are taken so that \(F_1(t)\) is zero for \(t<0\) and continuous at \(t=0\).


2階積分 (2nd order integral)
\[\begin{eqnarray} F_2(t) &=& \int_{-\infty}^t F_1(t’)dt’ \nonumber \\ &=& \begin{cases} 0 & (t<0) \\ \frac{\tau_s}{1+\left(\frac{2\pi \tau_s}{\tau_p}\right)^2} \left[ \frac{2\pi \tau_s}{\tau_p}t -\frac{\frac{4\pi \tau_s^2}{\tau_p}} {1+\left(\frac{2\pi \tau_s}{\tau_p}\right)^2} +\frac{1-\left(\frac{2\pi \tau_s}{\tau_p}\right)^2} {1+\left(\frac{2\pi \tau_s}{\tau_p}\right)^2} \tau_s\sin\frac{2\pi t}{\tau_p}e^{-t/\tau_s} \right. & \\ \left. +\frac{\frac{4\pi \tau_s^2}{\tau_p}} {1+\left(\frac{2\pi \tau_s}{\tau_p}\right)^2} \cos\frac{2\pi t}{\tau_p}e^{-t/\tau_s} \right] & (t\geq 0) \end{cases} \label{eq.integral2} \end{eqnarray}\]
ここで積分定数は\(t<0\)で\(F_2(t)=0\)、 \(t=0\)で\(F_2(t)\)が連続となるように与えた。
Here, the integration constants are taken so that \(F_2(t)\) is zero for \(t<0\) and continuous at \(t=0\).


◆形式(Format)

#include <sequence/timefunc.h>
inline struct sequence create_timefunc_damposc
(const double tp,const double ts,const int size,const double t0,
 const double dt,const int Nintegral)


◆引数(Arguments)

tp (\ref{eq.definition})式における\(\tau_p\)の値。
The value of \(\tau_p\) in eq. (\ref{eq.definition}).
ts (\ref{eq.definition})式における\(\tau_s\)の値。
The value of \(\tau_s\) in eq. (\ref{eq.definition}).
size 作成する時系列データのサンプル数。
The number of samples of the time series data to create.
t0 作成する時系列データの先頭時刻。
The beginning time of the time series data to create.
dt 作成する時系列データのサンプリング間隔。
The sampling interval of the time series data to create.
Nintegral 積分回数。以下の4つの値のいずれかを指定する。
The number of integrals, which must be one of the followings.
\(-1\) 時間関数の微分形(\ref{eq.derivative}式)を作成する。
Create the differential form (eq. \ref{eq.derivative}) of the time function.
0 時間関数そのもの(\ref{eq.definition}式)を作成する。
Create the time function itself (eq. \ref{eq.definition}).
1 時間関数の1階積分形(\ref{eq.integral1}式)を作成する。
Create the 1st order integral form (eq. \ref{eq.integral1}) of the time function.
2 時間関数の2階積分形(\ref{eq.integral2}式)を作成する。
Create the 2nd order integral form (eq. \ref{eq.integral2}) of the time function.


◆戻り値(Return value)

引数Nintegralの値に応じて (\ref{eq.definition}) (\ref{eq.derivative}) (\ref{eq.integral1}) (\ref{eq.integral2})の いずれかの時間関数を表す時系列データ。
A time series data which represents the time function of either of eqs. (\ref{eq.definition}), (\ref{eq.derivative}), (\ref{eq.integral1}), and (\ref{eq.integral2}) depending on argument Nintegral.


◆使用例(Example)

struct sequence timefunc=create_timefunc_damposc (5.0,2.5,10001,-2.0,0.01,1);

この例では(\ref{eq.integral1})式で \(\tau_p=5\) s, \(\tau_s=2.5\) sとした時系列データが \(t\in [-2,98]\)の時間範囲において0.01 sのサンプリング間隔で作成される。
In this example, a time series data based on eq. (\ref{eq.integral1}) with \(\tau_p=5\) s and \(\tau_s=2.5\) s is created in a time range \(t\in [-2,98]\) with 0.01 s sampling intervals.