Lines Matching refs:kBeta
31 PetscReal kBeta[3]; /* filter parameters */ member
121 PetscReal b1 = dsp->kBeta[0]; in TSAdaptChoose_DSP()
122 PetscReal b2 = dsp->kBeta[1]; in TSAdaptChoose_DSP()
123 PetscReal b3 = dsp->kBeta[2]; in TSAdaptChoose_DSP()
188 double b1 = (double)dsp->kBeta[0], b2 = (double)dsp->kBeta[1], b3 = (double)dsp->kBeta[2]; in TSAdaptView_DSP()
197 PetscReal kBeta[3]; member
241 dsp->kBeta[0] = tab->kBeta[0] / tab->scale; in TSAdaptDSPSetFilter_DSP()
242 dsp->kBeta[1] = tab->kBeta[1] / tab->scale; in TSAdaptDSPSetFilter_DSP()
243 dsp->kBeta[2] = tab->kBeta[2] / tab->scale; in TSAdaptDSPSetFilter_DSP()
254 dsp->kBeta[0] = kkI + kkP + kkD; in TSAdaptDSPSetPID_DSP()
255 dsp->kBeta[1] = -(kkP + 2 * kkD); in TSAdaptDSPSetPID_DSP()
256 dsp->kBeta[2] = kkD; in TSAdaptDSPSetPID_DSP()
283 …PetscCall(PetscOptionsRealArray("-ts_adapt_dsp_kbeta", "Filter parameters", "", dsp->kBeta, (n = 3… in TSAdaptSetFromOptions_DSP()
286 for (i = n; i < 3; i++) dsp->kBeta[i] = 0; in TSAdaptSetFromOptions_DSP()