Home
last modified time | relevance | path

Searched refs:maxdt (Results 1 – 25 of 37) sorted by relevance

12

/dports/comms/gpredict/gpredict-2.2.1/src/
H A Dpredict-tools.c150 if (maxdt > 0.0) in find_aos()
154 while ((sat->el < -1.0) && (t <= (start + maxdt))) in find_aos()
249 if (maxdt > 0.0) in find_los()
369 return get_pass(sat, qth, now, maxdt); in get_next_pass()
396 return get_passes(sat, qth, now, maxdt, num); in get_next_passes()
433 gdouble maxdt) in get_pass_no_min_el() argument
507 else if ((maxdt > 0.0) && (aos > (start + maxdt))) in get_pass_engine()
664 gdouble maxdt, guint num) in get_passes() argument
680 pass = get_pass(sat, qth, t, maxdt); in get_passes()
690 if ((maxdt > 0.0) && (t >= (start + maxdt))) in get_passes()
[all …]
H A Dpredict-tools.h89 gdouble find_aos (sat_t *sat, qth_t *qth, gdouble start, gdouble maxdt);
90 gdouble find_los (sat_t *sat, qth_t *qth, gdouble start, gdouble maxdt);
94 pass_t *get_next_pass (sat_t *sat, qth_t *qth, gdouble maxdt);
95 GSList *get_next_passes (sat_t *sat, qth_t *qth, gdouble maxdt, guint num);
98 pass_t *get_pass (sat_t *sat, qth_t *qth, gdouble start, gdouble maxdt);
99 GSList *get_passes (sat_t *sat, qth_t *qth, gdouble start, gdouble maxdt, guint num);
101 pass_t *get_pass_no_min_el (sat_t *sat, qth_t *qth, gdouble start, gdouble maxdt);
H A Dgtk-sat-module.c617 gdouble maxdt; in gtk_sat_module_update_sat() local
625 maxdt = (gdouble) sat_cfg_get_int(SAT_CFG_INT_PRED_LOOK_AHEAD); in gtk_sat_module_update_sat()
640 sat->aos = find_aos(sat, module->qth, daynum, maxdt); in gtk_sat_module_update_sat()
641 sat->los = find_los(sat, module->qth, daynum, maxdt); in gtk_sat_module_update_sat()
680 sat->aos = find_aos(sat, module->qth, daynum, maxdt); in gtk_sat_module_update_sat()
683 sat->los = find_los(sat, module->qth, daynum, maxdt); in gtk_sat_module_update_sat()
H A Dgtk-sky-glance.c663 gdouble maxdt; in create_sat() local
682 maxdt = skg->te - skg->ts; in create_sat()
685 passes = get_passes(sat, skg->qth, skg->ts, maxdt, 10); in create_sat()
689 __FILE__, __LINE__, sat->nickname, n, maxdt); in create_sat()
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Transformation/src/
H A DFreeFormTransformationRungeKutta.h387 if (abs(h) > maxdt) h = copysign(maxdt, d); in Transform()
409 if (mindt < maxdt) { in Transform()
428 else if (abs(hnext) > maxdt) hnext = copysign(maxdt, d); in Transform()
467 if (abs(h) > maxdt) h = copysign(maxdt, d); in Jacobian()
503 if (mindt < maxdt) { in Jacobian()
522 else if (abs(hnext) > maxdt) hnext = copysign(maxdt, d); in Jacobian()
567 if (abs(h) > maxdt) h = copysign(maxdt, d); in JacobianDOFs()
604 if (mindt < maxdt) { in JacobianDOFs()
623 else if (abs(hnext) > maxdt) hnext = copysign(maxdt, d); in JacobianDOFs()
665 if (abs(h) > maxdt) h = copysign(maxdt, d); in JacobianDOFs()
[all …]
/dports/science/PETSc/petsc-3.14.1/src/ts/impls/pseudo/ftn-auto/
H A Dposindepf.c68 PETSC_EXTERN void tspseudosetmaxtimestep_(TS ts,PetscReal *maxdt, int *__ierr) in tspseudosetmaxtimestep_() argument
71 (TS)PetscToPointer((ts) ),*maxdt); in tspseudosetmaxtimestep_()
/dports/science/PETSc/petsc-3.14.1/src/ts/event/
H A Dtsevent.c402 PetscReal maxdt = ts->max_time-t; in TSEventHandler() local
404 … dt = dt > maxdt ? maxdt : (PetscIsCloseAtTol(dt,maxdt,10*PETSC_MACHINE_EPSILON,0) ? maxdt : dt); in TSEventHandler()
507 PetscReal maxdt = ts->max_time-t; in TSEventHandler() local
509 … dt = dt > maxdt ? maxdt : (PetscIsCloseAtTol(dt,maxdt,10*PETSC_MACHINE_EPSILON,0) ? maxdt : dt); in TSEventHandler()
/dports/graphics/geomview/geomview-1.9.5/src/bin/geomview/x11/
H A Dgvevent.c72 int mindt, maxdt, meandt; /* Integer milliseconds */ member
223 if(dt > perf.maxdt) perf.maxdt = dt; in perftick()
237 perf.mindt, perf.maxdt, in timing()
242 perf.mindt = 9999999, perf.maxdt = -1, perf.meandt = perf.cycles = 0; in timing()
/dports/science/PETSc/petsc-3.14.1/src/ts/impls/implicit/sundials/
H A Dsundials.c328 if (cvode->maxdt > 0) { in TSSetUp_Sundials()
329 flag = CVodeSetMaxStep(mem,(realtype)cvode->maxdt); in TSSetUp_Sundials()
402 …dials_maxdt","Maximum step size","TSSundialsSetMaxTimeStep",cvode->maxdt,&cvode->maxdt,NULL);CHKER… in TSSetFromOptions_Sundials()
445 …if (cvode->maxdt > 0) {ierr = PetscViewerASCIIPrintf(viewer,"Sundials maximum time step %g\n",(dou… in TSView_Sundials()
541 PetscErrorCode TSSundialsSetMaxTimeStep_Sundials(TS ts,PetscReal maxdt) in TSSundialsSetMaxTimeStep_Sundials() argument
546 cvode->maxdt = maxdt; in TSSundialsSetMaxTimeStep_Sundials()
846 PetscErrorCode TSSundialsSetMaxTimeStep(TS ts,PetscReal maxdt) in TSSundialsSetMaxTimeStep() argument
851 ierr = PetscTryMethod(ts,"TSSundialsSetMaxTimeStep_C",(TS,PetscReal),(ts,maxdt));CHKERRQ(ierr); in TSSundialsSetMaxTimeStep()
932 cvode->maxdt = -1.; in TSCreate_Sundials()
H A Dsundials.h34 PetscReal mindt,maxdt; member
/dports/astro/xtide/xtide-2.15.3/libxtide/
H A DConstituentSet.cc112 if (max > maxdt[deriv]) in ConstituentSet()
113 maxdt[deriv] = max; in ConstituentSet()
115 maxdt[deriv] *= 1.1; /* Add a little safety margin... */ in ConstituentSet()
193 return prefer (maxdt[deriv], preferredLengthUnits); in tideDerivativeMax()
H A DConstituentSet.hh89 Amplitude maxdt[maxDeriv+2]; member in libxtide::ConstituentSet
/dports/science/PETSc/petsc-3.14.1/src/ts/impls/implicit/sundials/ftn-auto/
H A Dsundialsf.c127 PETSC_EXTERN void tssundialssetmaxtimestep_(TS ts,PetscReal *maxdt, int *__ierr) in tssundialssetmaxtimestep_() argument
130 (TS)PetscToPointer((ts) ),*maxdt); in tssundialssetmaxtimestep_()
/dports/science/py-MDAnalysis/MDAnalysis-0.19.2/MDAnalysis/analysis/
H A Dwaterdynamics.py566 def _finalGraphGetC_i(self, HBP, t0, tf, maxdt): argument
571 for dt in range(maxdt):
576 def _finalGraphGetC_c(self, HBP, t0, tf, maxdt): argument
581 for dt in range(maxdt):
586 def _getGraphics(self, HBP, t0, tf, maxdt): argument
591 cont = self._finalGraphGetC_c(HBP, t0, tf, maxdt)
592 inte = self._finalGraphGetC_i(HBP, t0, tf, maxdt)
/dports/science/elmerfem/elmerfem-release-9.0/fem/src/modules/
H A DParticleAdvector.F9073 REAL(KIND=dp) :: maxdt, dertime = 0.0, tottime = 0.0 local
93 maxdt = 0.0_dp
153 maxdt = GetParticleTimeStep( Particles, InitTimestep )
157 IF( ABS( maxdt ) < TINY( maxdt ) ) THEN
163 dertime = dertime + maxdt
164 tottime = tottime + maxdt
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/tests/results/
H A Dstl-fixed.f90322 real(kind=8) maxs, mins, maxt, mint, maxds, maxdt, difs, dift local
368 maxdt = abs(work(1, 7) - trend(1))
387 if(.not.(maxdt < dift))goto 23149
388 maxdt = dift
391 if(.not.((maxds / (maxs - mins) < .01) .and. (maxdt / (maxt - mint) < .01)))goto 23151
/dports/science/frontistr/FrontISTR-c66bdc397de319ca59a0565b3f3b1a3b33f0c50c/fistr1/src/lib/
H A Dm_step.f9040 real(kind=kreal) :: maxdt !< upper bound of time increment component
74 stepinfo%maxdt = 1.d0
/dports/math/R/R-4.1.2/src/library/stats/src/
H A Dstl.f402 double precision maxs, mins, maxt, mint, maxds, maxdt, difs, dift
449 maxdt = abs(work(1,7) - trend(1))
458 if(maxdt .lt. dift) maxdt = dift
461 & (maxdt/(maxt-mint) .lt. 0.01d0)) goto 300
/dports/math/libRmath/R-4.1.1/src/library/stats/src/
H A Dstl.f402 double precision maxs, mins, maxt, mint, maxds, maxdt, difs, dift
449 maxdt = abs(work(1,7) - trend(1))
458 if(maxdt .lt. dift) maxdt = dift
461 & (maxdt/(maxt-mint) .lt. 0.01d0)) goto 300
/dports/net/wireshark/wireshark-3.6.1/ui/
H A Dtap-rtp-analysis.c404 maxdt = (dt > maxdt ? dt : maxdt); in rtppacket_analyse()
/dports/net/wireshark-lite/wireshark-3.6.1/ui/
H A Dtap-rtp-analysis.c404 maxdt = (dt > maxdt ? dt : maxdt); in rtppacket_analyse()
/dports/net/tshark/wireshark-3.6.1/ui/
H A Dtap-rtp-analysis.c404 maxdt = (dt > maxdt ? dt : maxdt); in rtppacket_analyse()
/dports/net/tshark-lite/wireshark-3.6.1/ui/
H A Dtap-rtp-analysis.c404 maxdt = (dt > maxdt ? dt : maxdt); in rtppacket_analyse()
/dports/science/PETSc/petsc-3.14.1/src/ts/impls/pseudo/
H A Dposindep.c446 PetscErrorCode TSPseudoSetMaxTimeStep(TS ts,PetscReal maxdt) in TSPseudoSetMaxTimeStep() argument
452 PetscValidLogicalCollectiveReal(ts,maxdt,2); in TSPseudoSetMaxTimeStep()
453 ierr = PetscTryMethod(ts,"TSPseudoSetMaxTimeStep_C",(TS,PetscReal),(ts,maxdt));CHKERRQ(ierr); in TSPseudoSetMaxTimeStep()
546 static PetscErrorCode TSPseudoSetMaxTimeStep_Pseudo(TS ts,PetscReal maxdt) in TSPseudoSetMaxTimeStep_Pseudo() argument
551 pseudo->dt_max = maxdt; in TSPseudoSetMaxTimeStep_Pseudo()
/dports/science/quantum-espresso/q-e-qe-6.7.0/CPV/src/
H A Dwfdd.f90550 real(kind=8) :: slope, slope2, t1, t2, t3, mt(nw),t21,temp1,maxdt local
709 maxdt=maxwfdt
762 maxwfdt=maxdt

12