Home
last modified time | relevance | path

Searched refs:Vmax (Results 1 – 25 of 454) sorted by relevance

12345678910>>...19

/dports/science/siesta/siesta-4.1.5/Src/
H A Dvacuum_level.f9026 real(dp),intent(out):: Vmax ! Max. eff. potential in vaccuum region local
36 Vmax = -huge(Vmax) ! Max. potential in vacuum region
42 Vmax = max( Vmax, maxval(V(ip,1:ns)) )
49 call miscAllReduce( 'max', Vmax ) ! Get max. vac. pot. of all processors
54 Vmax = 0
/dports/science/thermofun/thermofun-0.3.8/ThermoFun/Substances/Solids/
H A DSolidHPLandau.cpp25 auto Vmax = transProp[2]; in thermoPropertiesHPLandau() local
33 if( Vmax == 0.0 ) in thermoPropertiesHPLandau()
38 Tcr = Tcr0 + Vmax/Smax * (Pbar); in thermoPropertiesHPLandau()
47 dQq = - TK*Vmax/(4.*pow((1.+TK/Tcr),0.75)*pow(Tcr,2.)*Smax); in thermoPropertiesHPLandau()
56 auto v_bis = Vmax *pow(Q298,2.) * ( 1.+a0*(TK-TrK) - 20.*a0*( sqrt(TK) - sqrt(TrK) )); in thermoPropertiesHPLandau()
59 …auto idvdtdp = ( ((Vmax*pow(Q298,2.))*kT/3.)*(a0-10.*a0*pow(TK,-0.5)) * (pow((1.+4.*(Pbar/1000)/kT… in thermoPropertiesHPLandau()
71 …tps.volume = ( v_bis + 2.*Smax*(TK-Tcr)*Qq_*dQq_ - Smax*pow(Qq_,2.)*Vmax/Smax + Tcr*pow(Qq_… in thermoPropertiesHPLandau()
72 + Vmax/Smax*pow(Qq_,3.)/3. ); // in J/bar in thermoPropertiesHPLandau()
78 …tps.volume = ( v_bis + 2.*Smax*(TK-Tcr)*Qq*dQq - Smax*pow(Qq,2.)*Vmax/Smax + Tcr*pow(Qq,2.)… in thermoPropertiesHPLandau()
79 + Vmax/Smax*pow(Qq,3.)/3. ); // in J/bar in thermoPropertiesHPLandau()
/dports/graphics/wings/libigl-2.1.0/python/tutorial/
H A D705_MarchingCubes.py52 Vmax = V.colwiseMaxCoeff() variable
53 h = (Vmax - Vmin).maxCoeff() / s
54 res = (s * ((Vmax - Vmin) / (Vmax - Vmin).maxCoeff())).castint()
56 def lerp(res, Vmin, Vmax, di, d): argument
57 return Vmin[d] + float(di) / (res[d] - 1) * (Vmax[d] - Vmin[d])
63 z = lerp(res, Vmin, Vmax, zi, 2)
65 y = lerp(res, Vmin, Vmax, yi, 1)
67 x = lerp(res, Vmin, Vmax, xi, 0)
/dports/cad/opencascade/opencascade-7.6.0/src/GeomLib/
H A DGeomLib_IsPlanarSurface.cxx232 Standard_Real Umin, Umax, Vmin, Vmax; in GeomLib_IsPlanarSurface() local
233 S->Bounds(Umin, Umax, Vmin, Vmax); in GeomLib_IsPlanarSurface()
234 S->D1((Umin+Umax)/2, (Vmin+Vmax)/2, P, DU, DV); in GeomLib_IsPlanarSurface()
239 Standard_Real NewV = (Vmin+Vmax)/2 + (Vmax-Vmin)*0.1; in GeomLib_IsPlanarSurface()
269 Standard_Real Umin, Umax, Vmin, Vmax; in GeomLib_IsPlanarSurface() local
274 S->Bounds(Umin, Umax, Vmin, Vmax); in GeomLib_IsPlanarSurface()
280 Standard_Real NewV = (Vmin+Vmax)/2 + (Vmax-Vmin)*0.1; in GeomLib_IsPlanarSurface()
287 Standard_Real angmax = Tol / (Vmax-Vmin); in GeomLib_IsPlanarSurface()
296 C = S->VIso((Vmin+Vmax)/2); in GeomLib_IsPlanarSurface()
310 S->Bounds(Umin, Umax, Vmin, Vmax); in GeomLib_IsPlanarSurface()
[all …]
/dports/devel/color/color-a04952cf27cc315e31811f2e940221bf8cf9f8ca/src/color/yuv/constant/
H A Dparameter.hpp30 static /* constexpr*/ scalar_type const Vmax(){ return 0; } in Vmax() function
43 static /* constexpr*/ scalar_type const Vmax(){ return 0.615; } in Vmax() function
56 static /* constexpr*/ scalar_type const Vmax(){ return 0.615; } in Vmax() function
75 static /* constexpr*/ scalar_type const v_min() { return -this_type::Vmax(); } in v_min()
76 static /* constexpr*/ scalar_type const v_max() { return this_type::Vmax(); } in v_max()
77 static /* constexpr*/ scalar_type const v_range(){ return 2*this_type::Vmax(); } in v_range()
/dports/lang/rust/rustc-1.58.1-src/src/test/mir-opt/
H A Dearly_otherwise_branch_68867.rs10 Vmax(CSSFloat), enumerator
25 (&Vmax(one), &Vmax(other)) => Vmax(one + other), in try_sum()
/dports/devel/color/color-a04952cf27cc315e31811f2e940221bf8cf9f8ca/src/color/rgb/convert/
H A Dyuv.hpp71 static scalar_type const Vmax = yuv_parameter_type::Vmax(); in process() local
73 … static scalar_type const b11 = 1, b12 = 0, b13 = (1 - Wr) / Vmax; in process()
74 …static scalar_type const b21 = 1, b22 = - Wb*(1 - Wb) / Umax / Wg, b23 = -Wr*(1 - Wr) / Vmax / Wg; in process()
82 v = ( v - scalar_type(0.5) ) * scalar_type(2) * Vmax; in process()
H A DYDbDr.hpp65 static scalar_type const Vmax = YDbDr_const_type::Vmax(); in process() local
67 … static scalar_type const b11 = 1, b12 = 0, b13 = (1 - Wr) / Vmax; in process()
68 …static scalar_type const b21 = 1, b22 = - Wb*(1 - Wb) / Umax / Wg, b23 = -Wr*(1 - Wr) / Vmax / Wg; in process()
/dports/graphics/wings/libigl-2.1.0/tutorial/705_MarchingCubes/
H A Dmain.cpp23 const RowVector3d Vmax = V.colwise().maxCoeff(); in main() local
24 const double h = (Vmax-Vmin).maxCoeff()/(double)s; in main()
25 const RowVector3i res = (s*((Vmax-Vmin)/(Vmax-Vmin).maxCoeff())).cast<int>(); in main()
32 {return Vmin(d)+(double)di/(double)(res(d)-1)*(Vmax(d)-Vmin(d));}; in main()
/dports/devel/color/color-a04952cf27cc315e31811f2e940221bf8cf9f8ca/src/color/yuv/get/
H A Dred.hpp41 static scalar_type const Vmax = yuv_parameter_type::Vmax(); in red() local
44 static scalar_type const b11 = 1, b12 = 0, b13 = (1 - Wr) / Vmax; in red()
49 v = ( v - scalar_type(0.5) ) * scalar_type(2) * Vmax; in red()
H A Dgreen.hpp44 static scalar_type const Vmax = yuv_parameter_type::Vmax(); in green() local
46 …static scalar_type const b21 = 1, b22 = - Wb*(1 - Wb) / Umax / Wg, b23 = -Wr*(1 - Wr) / Vmax / Wg; in green()
53 v = ( v - scalar_type(0.5) ) * scalar_type(2) * Vmax; in green()
/dports/devel/color/color-a04952cf27cc315e31811f2e940221bf8cf9f8ca/src/color/cmy/convert/
H A Dyuv.hpp69 static scalar_type const Vmax = yuv_parameter_type::Vmax(); in process() local
71 … static scalar_type const b11 = 1, b12 = 0, b13 = (1 - Wr) / Vmax; in process()
72 …static scalar_type const b21 = 1, b22 = - Wb*(1 - Wb) / Umax / Wg, b23 = -Wr*(1 - Wr) / Vmax / Wg; in process()
80 v = ( v - scalar_type(0.5) ) * scalar_type(2) * Vmax; in process()
H A DYDbDr.hpp64 static scalar_type const Vmax = YDbDr_const_type::Vmax(); in process() local
66 … static scalar_type const b11 = 1, b12 = 0, b13 = (1 - Wr) / Vmax; in process()
67 …static scalar_type const b21 = 1, b22 = - Wb*(1 - Wb) / Umax / Wg, b23 = -Wr*(1 - Wr) / Vmax / Wg; in process()
/dports/cad/opencascade/opencascade-7.6.0/src/BRepFill/
H A DBRepFill_MultiLine.cxx156 Vmax = Max(Vmax,V); in BRepFill_MultiLine()
196 UU1 = S->VIso(Vmax); in BRepFill_MultiLine()
209 Umax = Vmax; in BRepFill_MultiLine()
211 Vmax = dummyUmax; in BRepFill_MultiLine()
228 Vmin, Vmax); in BRepFill_MultiLine()
239 Vmin, Vmax); in BRepFill_MultiLine()
263 Vmax = Max(Vmax,V); in BRepFill_MultiLine()
315 Umax = Vmax; in BRepFill_MultiLine()
317 Vmax = dummyUmax; in BRepFill_MultiLine()
334 Vmin, Vmax); in BRepFill_MultiLine()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/CSLib/
H A DCSLib_Class2d.cxx44 Vmax = vmax; in Init()
134 aTolv=Tolv*(Vmax-Vmin); in SiDans()
136 if(Umin<Umax && Vmin<Vmax) { in SiDans()
140 ( y>(Vmax+aTolv) ) ) { in SiDans()
144 y=Transform2d(y,Vmin,Vmax-Vmin); in SiDans()
179 if(Umin<Umax && Vmin<Vmax) { in SiDans_OnMode()
181 (y<Vmin-aTolv) || (y>Vmax+aTolv)) { in SiDans_OnMode()
185 y=Transform2d(y,Vmin,Vmax-Vmin); in SiDans_OnMode()
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/doc/cla/individual/
H A Dvmaxadmin.md3 Vmax Ltd.Co agrees to the terms of the Odoo Corporate Contributor License
11 Vmax admin@vmax.vn https://github.com/vmaxadmin
15 Vmax admin@vmax.vn https://github.com/vmaxadmin
/dports/games/pioneer/pioneer-20210723/src/ship/
H A DPrecalcPath.cpp195 double t1 = t_from_dV_mixed(Vmax - Vstart, EV, m, F, acap); in S_from_Vmax_mixed()
198 double t2 = t_from_dV_mixed(Vmax - Vend, EV, m1, F * margin, acap * margin); in S_from_Vmax_mixed()
210 double Vmax = Vmax_from_S_acap(S, Vstart, Vend, F / m, F / m * margin); in Vmax_from_S_mixed() local
214 double t1 = t_from_dV_norm(Vmax, EV, m, F); in Vmax_from_S_mixed()
216 Vmax_prev = Vmax; in Vmax_from_S_mixed()
217 Vmax = Vmax_from_S_acap(S - S_guess, Vmax, Vmax, F / m1, F / m1 * margin); in Vmax_from_S_mixed()
218 } while (std::abs(Vmax - Vmax_prev) > eps); in Vmax_from_S_mixed()
219 return Vmax; in Vmax_from_S_mixed()
282 double Vmax = (dV_from_dm(mass, fuel, EV) + V0) / 2; in PrecalcPath() local
283 double Smax = S_from_Vmax_mixed(Vmax, V0, 0, EV, mass, F, acap, margin); in PrecalcPath()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/GeomAPI/
H A DGeomAPI_ExtremaCurveSurface.cxx68 const Standard_Real Vmax) in GeomAPI_ExtremaCurveSurface() argument
70 Init(Curve,Surface,Wmin,Wmax,Umin,Umax,Vmin,Vmax); in GeomAPI_ExtremaCurveSurface()
122 const Standard_Real Vmax) in Init() argument
125 GeomAdaptor_Surface TheSurface (Surface, Umin, Umax, Vmin, Vmax); in Init()
129 Umin,Umax,Vmin,Vmax,Tol,Tol); in Init()
/dports/cad/opencascade/opencascade-7.6.0/src/IntTools/
H A DIntTools_FClass2d.cxx122 Umax = Vmax = -Umin; in Init()
281 if(P2d.Y()>Vmax) Vmax = P2d.Y(); in Init()
383 Umin,Vmin,Umax,Vmax)); in Init()
485 Umin,Vmin,Umax,Vmax)); in Init()
513 Umin,Vmin,Umax,Vmax)); in Init()
541 Standard_Real uuu=M_PI+M_PI-(Vmax-Vmin); in Init()
558 if(Umax==-RealLast() || Vmax==-RealLast() || in PerformInfinitePoint()
562 gp_Pnt2d P(Umin-(Umax-Umin),Vmin-(Vmax-Vmin)); in PerformInfinitePoint()
656 bVIn = (v >= Vmin) && (v <= Vmax); in Perform()
703 if (v > Vmax || !IsVPer) { in Perform()
[all …]
/dports/graphics/grafx2/grafx2/src/
H A Dop_c.c498 c1->Gmin=c->Gmin; c1->Vmax=c->Vmax; in Cluster_split_volume()
505 c2->Gmin=c->Gmin; c2->Vmax=c->Vmax; in Cluster_split_volume()
515 c1->Gmin=c->Gmin; c1->Vmax=g; in Cluster_split_volume()
522 c2->Gmin=g+1; c2->Vmax=c->Vmax; in Cluster_split_volume()
532 c1->Gmin=c->Gmin; c1->Vmax=c->Vmax; in Cluster_split_volume()
539 c2->Gmin=c->Gmin; c2->Vmax=c->Vmax; in Cluster_split_volume()
588 c1->Gmin=c->Gmin; c1->Vmax=c->Vmax; in Cluster_split()
595 c2->Gmin=c->Gmin; c2->Vmax=c->Vmax; in Cluster_split()
634 c2->Gmin=g; c2->Vmax=c->Vmax; in Cluster_split()
665 c1->Gmin=c->Gmin; c1->Vmax=c->Vmax; in Cluster_split()
[all …]
/dports/audio/afsp/AFsp-v8r2/audio/CompAudio/
H A DCAprstat.c61 if (Stats[i].Vmax == Stats[i].Vmin) in CAprstat()
72 printf (CAMF_MaxMin, SFI * Stats[i].Vmax, 100. * Stats[i].Vmax, in CAprstat()
/dports/cad/opencascade/opencascade-7.6.0/src/BRepTopAdaptor/
H A DBRepTopAdaptor_FClass2d.cxx112 Umax = Vmax = -Umin; in BRepTopAdaptor_FClass2d()
222 if(P2d.Y()>Vmax) Vmax = P2d.Y(); in BRepTopAdaptor_FClass2d()
284 TabClass.Append((void *)new CSLib_Class2d(PClass,FlecheU,FlecheV,Umin,Vmin,Umax,Vmax)); in BRepTopAdaptor_FClass2d()
418 TabClass.Append((void *)new CSLib_Class2d(PClass,FlecheU,FlecheV,Umin,Vmin,Umax,Vmax)); in BRepTopAdaptor_FClass2d()
446 TabClass.Append((void *)new CSLib_Class2d(xPClass,FlecheU,FlecheV,Umin,Vmin,Umax,Vmax)); in BRepTopAdaptor_FClass2d()
474 Standard_Real uuu=M_PI+M_PI-(Vmax-Vmin); in BRepTopAdaptor_FClass2d()
488 if(Umax==-RealLast() || Vmax==-RealLast() || Umin==RealLast() || Vmin==RealLast()) { in PerformInfinitePoint()
491 gp_Pnt2d P(Umin-(Umax-Umin),Vmin-(Vmax-Vmin)); in PerformInfinitePoint()
622 if (v > Vmax || !IsVPer) in Perform()
752 if (v > Vmax || !IsVPer) in TestOnRestriction()
/dports/science/opensim-core/opensim-core-4.1/OpenSim/Actuators/
H A DThelen2003Muscle_Deprecated.cpp117 double Vmax = getVmax(); in computeActuation() local
119 Vmax = getVmax0() + activation*(Vmax-getVmax0()); in computeActuation()
121 Vmax = Vmax*_optimalFiberLength; in computeActuation()
158 fiberLengthDeriv = getLengtheningSpeed(s) / (Vmax * new_ca); in computeActuation()
174 setFiberLengthDeriv(s, fiberLengthDeriv * Vmax ); in computeActuation()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/ImageFunction/include/
H A DitkLabelImageGaussianInterpolateImageFunction.hxx69 OutputType Vmax = NumericTraits<OutputType>::ZeroValue(); in EvaluateAtContinuousIndex() local
108 Vmax = V; in EvaluateAtContinuousIndex()
111 return Vmax; in EvaluateAtContinuousIndex()
/dports/math/gecode/gecode-0916a1a/contribs/qecode/
H A DStrategyNode.cc29 Vmax=-1; in StrategyNode()
37 Vmax=max; in StrategyNode()

12345678910>>...19