関数create_timefunc_pow33 マニュアル

(The documentation of function create_timefunc_pow33)

Last Update: 2021/12/8


◆機能・用途(Purpose)

時間関数pow3-3(下記(\ref{eq.definition})式)に基づく時系列データを作成する。 エラーチェック機能が不十分なのでこの関数を直接用いてはならない。 この関数は関数create_timefuncからの内部呼び出し用である。
Create a time series data based on a time function pow3-3 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)
時刻\(t<0\)および\(t>\tau_p\)で0、最大値が1、 かつ全ての時刻で2階導関数までが連続となる 最小次数の多項式である。 2階導関数までを連続とする目的については 関数pow3-4の説明参照。
The polynominal with minimum possible degrees that satisfy the following conditions: zero for \(t<0\) and \(t>\tau_p\), unity at the maximum, and second derivative of the function is continuous at all the time. For the reason of requiring the second order derivative to be continuous, see the description of function pow3-4.


定義(Definition)
\[\begin{equation} f(t)= \begin{cases} 0 & (t<0) \\ 64\left(\frac{t}{\tau_p}\right)^3\left(1-\frac{t}{\tau_p}\right)^3 & (0\leq t \leq \tau_p) \\ 0 & (\tau_p<t) \end{cases} \label{eq.definition} \end{equation}\]
以下の微分形と積分形の導出にあたっては \(0\leq t \leq \tau_p\)の範囲において(\ref{eq.definition})式が \[\begin{equation} f(t)=\frac{64}{\tau_p^6}t^3(\tau_p-t)^3 =-\frac{64}{\tau_p^6}(t^6-3\tau_pt^5+3\tau_p^2t^4-\tau_p^3t^3) \label{eq.expansion} \end{equation}\] と展開できることを利用する。
In the derivations of differential and integral forms below, eq. (\ref{eq.expansion}) is used as an expanded form of eq. (\ref{eq.definition}) for the range \(0\leq t \leq \tau_p\).


1階導関数 (1st order derivative)
\[\begin{equation} \frac{df(t)}{dt}= \begin{cases} 0 & (t<0) \\ -\frac{64}{\tau_p^6}(6t^5-15\tau_pt^4+12\tau_p^2t^3-3\tau_p^3t^2) & (0\leq t \leq \tau_p) \\ 0 & (\tau_p<t) \end{cases} \label{eq.derivative} \end{equation}\]

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


2階積分 (2nd order integral)
\[\begin{eqnarray} F_2(t) &=& \int_{-\infty}^t F_1(t’)dt’ \nonumber \\ &=& \begin{cases} 0 & (t<0) \\ -\frac{64}{\tau_p^6} \left(\frac{1}{56}t^8-\frac{1}{14}\tau_pt^7+\frac{1}{10}\tau_p^2t^6 -\frac{1}{20}\tau_p^3t^5\right) & (0\leq t \leq \tau_p) \\ -\frac{8}{35}\tau_p^2+\frac{16}{35}\tau_pt & (\tau_p<t) \end{cases} \label{eq.integral2} \end{eqnarray}\]
ここで積分定数は\(t<0\)で\(F_2(t)=0\)、 \(t=0\)および\(t=\tau_p\)で\(F_2(t)\)が連続となるように与えた。
Here, the integration constants are taken so that \(F_2(t)\) is zero for \(t<0\) and continuous at \(t=0\) and \(t=\tau_p\).


◆形式(Format)

#include <sequence/timefunc.h>
inline struct sequence create_timefunc_pow33
(const double tp,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}).
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_pow33(5.0,10001,-2.0,0.01,1);

この例では(\ref{eq.integral1})式で\(\tau_p=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 is created in a time range \(t\in [-2,98]\) with 0.01 s sampling intervals.