Home
last modified time | relevance | path

Searched refs:tpr (Results 1 – 25 of 1292) sorted by relevance

12345678910>>...52

/dports/science/thermofun/thermofun-0.3.8/ThermoFun/Reactions/
H A DVolume_function_of_T.cpp43 tpr.reaction_volume += VP; in thermoPropertiesReaction_Vol_fT()
44 tpr.reaction_enthalpy += VP; in thermoPropertiesReaction_Vol_fT()
50 tpr.reaction_volume += a[i] * VT; in thermoPropertiesReaction_Vol_fT()
56 tpr.reaction_volume += a[i] * VT * (TK-Tst); in thermoPropertiesReaction_Vol_fT()
68 tpr.reaction_volume += a[i] * VP; in thermoPropertiesReaction_Vol_fT()
82 tpr.ln_equilibrium_constant -= tpr.reaction_volume * (Pbar - Pst) / (R_CONSTANT*TK); in thermoPropertiesReaction_Vol_fT()
83 tpr.log_equilibrium_constant = tpr.ln_equilibrium_constant/lg_to_ln; in thermoPropertiesReaction_Vol_fT()
84 tpr.reaction_entropy = (tpr.reaction_enthalpy - tpr.reaction_gibbs_energy)/TK; in thermoPropertiesReaction_Vol_fT()
85 tpr.reaction_internal_energy = tpr.reaction_enthalpy - Pbar*tpr.reaction_volume; in thermoPropertiesReaction_Vol_fT()
86 tpr.reaction_helmholtz_energy = tpr.reaction_internal_energy - TK*tpr.reaction_entropy; in thermoPropertiesReaction_Vol_fT()
[all …]
H A DDolejsManning2010.cpp8 ThermoPropertiesReaction tpr; in thermoPropertiesDolejsManning2010() local
41 tpr.ln_equilibrium_constant = logK*lg_to_ln; in thermoPropertiesDolejsManning2010()
42 tpr.reaction_enthalpy = dHr; in thermoPropertiesDolejsManning2010()
43 tpr.reaction_entropy = dSr; in thermoPropertiesDolejsManning2010()
44 tpr.reaction_gibbs_energy = dGr; in thermoPropertiesDolejsManning2010()
45 tpr.reaction_heat_capacity_cp = dCPr; in thermoPropertiesDolejsManning2010()
46 tpr.reaction_volume = dVr; in thermoPropertiesDolejsManning2010()
47 tpr.reaction_helmholtz_energy = dAr; in thermoPropertiesDolejsManning2010()
48 tpr.reaction_internal_energy = dUr; in thermoPropertiesDolejsManning2010()
50 return tpr; in thermoPropertiesDolejsManning2010()
H A DRyzhenkoBryzgalyn.cpp8 ThermoPropertiesReaction tpr; in thermoPropertiesRyzhenkoBryzgalin() local
68 tpr.ln_equilibrium_constant = logKTP*lg_to_ln; in thermoPropertiesRyzhenkoBryzgalin()
69 tpr.log_equilibrium_constant = logKTP; in thermoPropertiesRyzhenkoBryzgalin()
70 tpr.reaction_gibbs_energy = dGr; in thermoPropertiesRyzhenkoBryzgalin()
71 tpr.reaction_entropy = dSr; in thermoPropertiesRyzhenkoBryzgalin()
72 tpr.reaction_enthalpy = dHr; in thermoPropertiesRyzhenkoBryzgalin()
73 tpr.reaction_heat_capacity_cp = dCPr; in thermoPropertiesRyzhenkoBryzgalin()
74 tpr.reaction_volume = dVr*1e5; // to J/bar in thermoPropertiesRyzhenkoBryzgalin()
75 tpr.reaction_helmholtz_energy = dAr; in thermoPropertiesRyzhenkoBryzgalin()
76 tpr.reaction_internal_energy = dUr; in thermoPropertiesRyzhenkoBryzgalin()
[all …]
H A DFrantzMarshall.cpp8 ThermoPropertiesReaction tpr; in thermoPropertiesFrantzMarshall() local
49 tpr.ln_equilibrium_constant = logK*lg_to_ln; in thermoPropertiesFrantzMarshall()
50 tpr.reaction_enthalpy = dHr; in thermoPropertiesFrantzMarshall()
51 tpr.reaction_entropy = dSr; in thermoPropertiesFrantzMarshall()
52 tpr.reaction_gibbs_energy = dGr; in thermoPropertiesFrantzMarshall()
53 tpr.reaction_heat_capacity_cp = dCPr; in thermoPropertiesFrantzMarshall()
54 tpr.reaction_volume = dVr; in thermoPropertiesFrantzMarshall()
55 tpr.reaction_helmholtz_energy = dAr; in thermoPropertiesFrantzMarshall()
56 tpr.reaction_internal_energy = dUr; in thermoPropertiesFrantzMarshall()
58 return tpr; in thermoPropertiesFrantzMarshall()
H A DLogK_function_of_T.cpp9 ThermoPropertiesReaction tpr; in thermoPropertiesReaction_LogK_fT() local
115 tpr.log_equilibrium_constant = lgK; in thermoPropertiesReaction_LogK_fT()
116 tpr.ln_equilibrium_constant = lgK*lg_to_ln; in thermoPropertiesReaction_LogK_fT()
117 tpr.reaction_gibbs_energy = dGr; in thermoPropertiesReaction_LogK_fT()
118 tpr.reaction_enthalpy = dHr; in thermoPropertiesReaction_LogK_fT()
119 tpr.reaction_entropy = dSr; in thermoPropertiesReaction_LogK_fT()
120 tpr.reaction_heat_capacity_cp = dCpr; in thermoPropertiesReaction_LogK_fT()
121 tpr.reaction_volume = dVr; in thermoPropertiesReaction_LogK_fT()
122 tpr.reaction_helmholtz_energy = dAr; in thermoPropertiesReaction_LogK_fT()
123 tpr.reaction_internal_energy = dUr; in thermoPropertiesReaction_LogK_fT()
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/gonum.org/v1/gonum/stat/
H A Droc.go52 tpr = make([]float64, len(y)+1)
61 tpr = make([]float64, n)
66 tpr[n-1] = 1
84 tpr[bin] += posWeight
94 tpr[bin] = tpr[bin-1]
101 tpr[bin] = tpr[bin-1]
107 tpr = tpr[:(bin + 1)]
118 for i := range tpr {
119 tpr[i] *= invPos
122 tpr[len(tpr)-1] = 1
[all …]
H A Droc_example_test.go19 tpr, fpr := stat.ROC(0, y, classes, weights)
20 fmt.Printf("true positive rate: %v\n", tpr)
32 tpr, fpr := stat.ROC(0, y, classes, nil)
33 fmt.Printf("true positive rate: %v\n", tpr)
45 tpr, fpr := stat.ROC(0, y, classes, nil)
47 auc := integrate.Trapezoidal(fpr, tpr)
48 fmt.Printf("true positive rate: %v\n", tpr)
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/stat/
H A Droc_example_test.go21 tpr, fpr, _ := stat.ROC(nil, y, classes, weights)
22 fmt.Printf("true positive rate: %v\n", tpr)
34 tpr, fpr, _ := stat.ROC(nil, y, classes, nil)
35 fmt.Printf("true positive rate: %v\n", tpr)
49 fmt.Printf("true positive rate: %v\n", tpr)
67 fmt.Printf("true positive rate: %v\n", tpr)
84 fmt.Printf("true positive rate: %v\n", tpr)
103 fmt.Printf("true positive rate: %.3v\n", tpr)
115 tpr, fpr, _ := stat.ROC(nil, y, classes, nil)
118 auc := integrate.Trapezoidal(fpr, tpr)
[all …]
H A Droc.go40 func ROC(cutoffs, y []float64, classes []bool, weights []float64) (tpr, fpr, thresh []float64) {
81 tpr = make([]float64, len(cutoffs))
90 tpr[bin] = tpr[bin-1]
104 tpr[bin] += posWeight
114 for i := range tpr[:bin+1] {
117 tpr[i] = 1 - float64(tpr[i]*invPos)
120 for i, j := 0, len(tpr)-1; i < j; i, j = i+1, j-1 {
121 tpr[i], tpr[j] = tpr[j], tpr[i]
128 return tpr, fpr, cutoffs
/dports/science/thermofun/thermofun-0.3.8/ThermoFun/
H A DThermoEngine.cpp519 ThermoPropertiesReaction tpr;
666 tpr.reaction_entropy = (tpr.reaction_enthalpy - tpr.reaction_gibbs_energy) / T;
667 tpr.reaction_internal_energy = tpr.reaction_enthalpy - P_ * tpr.reaction_volume;
668tpr.reaction_helmholtz_energy = tpr.reaction_internal_energy - T * tpr.reaction_entropy;
691 return tpr;
704 tpr.reaction_enthalpy = 0.0;
705 tpr.reaction_entropy = 0.0;
706 tpr.reaction_volume = 0.0;
734 tpr.ln_equilibrium_constant = tpr.reaction_gibbs_energy / -(R_CONSTANT*(T));
735 tpr.log_equilibrium_constant = tpr.ln_equilibrium_constant * ln_to_lg;
[all …]
/dports/science/thermofun/thermofun-0.3.8/ThermoFun/Common/
H A DException.cpp76 if (tpr.reaction_enthalpy.sta.first == sta) in setMessage()
77 tpr.reaction_enthalpy.sta.second += message + "; "; in setMessage()
78 if (tpr.reaction_entropy.sta.first == sta) in setMessage()
79 tpr.reaction_entropy.sta.second += message + "; "; in setMessage()
80 if (tpr.reaction_gibbs_energy.sta.first == sta) in setMessage()
82 if (tpr.reaction_heat_capacity_cp.sta.first == sta) in setMessage()
84 if (tpr.reaction_heat_capacity_cv.sta.first == sta) in setMessage()
86 if (tpr.reaction_helmholtz_energy.sta.first == sta) in setMessage()
88 if (tpr.reaction_internal_energy.sta.first == sta) in setMessage()
90 if (tpr.reaction_volume.sta.first == sta) in setMessage()
[all …]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/metrics/_plot/
H A Droc_curve.py78 def __init__(self, *, fpr, tpr, roc_auc=None, estimator_name=None, pos_label=None): argument
81 self.tpr = tpr
124 (self.line_,) = ax.plot(self.fpr, self.tpr, **line_kwargs)
333 fpr, tpr, _ = roc_curve(
340 roc_auc = auc(fpr, tpr)
346 fpr=fpr, tpr=tpr, roc_auc=roc_auc, estimator_name=name, pos_label=pos_label
455 fpr, tpr, _ = roc_curve(
462 roc_auc = auc(fpr, tpr)
467 fpr=fpr, tpr=tpr, roc_auc=roc_auc, estimator_name=name, pos_label=pos_label
/dports/science/py-scikit-learn/scikit-learn-1.0.2/examples/model_selection/
H A Dplot_roc.py72 tpr = dict() variable
75 fpr[i], tpr[i], _ = roc_curve(y_test[:, i], y_score[:, i])
76 roc_auc[i] = auc(fpr[i], tpr[i])
80 roc_auc["micro"] = auc(fpr["micro"], tpr["micro"])
89 tpr[2],
115 mean_tpr += np.interp(all_fpr, fpr[i], tpr[i])
121 tpr["macro"] = mean_tpr
122 roc_auc["macro"] = auc(fpr["macro"], tpr["macro"])
128 tpr["micro"],
137 tpr["macro"],
[all …]
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gdk/x11/
H A Dgdkim-x11.c139 XTextProperty tpr; in gdk_wcstombs() local
149 if (XwcTextListToTextProperty (xdisplay, &src_alt, 1, XTextStyle, &tpr) in gdk_wcstombs()
162 XTextStyle, &tpr) != Success) in gdk_wcstombs()
173 mbstr = g_strdup((gchar *)tpr.value); in gdk_wcstombs()
174 XFree (tpr.value); in gdk_wcstombs()
213 XTextProperty tpr; in gdk_mbstowcs() local
218 &tpr) in gdk_mbstowcs()
224 if (XwcTextPropertyToTextList (xdisplay, &tpr, &wstrs, &num_wstrs) in gdk_mbstowcs()
228 XFree(tpr.value); in gdk_mbstowcs()
231 XFree(tpr.value); in gdk_mbstowcs()
/dports/emulators/qemu42/qemu-4.2.1/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/net/ipxe/ipxe-2265a65/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/ipxe/src/drivers/net/tg3/
H A Dtg3.c44 if (tpr->rx_std) { in tg3_rx_prodring_fini()
46 tpr->rx_std = NULL; in tg3_rx_prodring_fini()
101 if (!tpr->rx_std) { in tg3_alloc_consistent()
105 tpr->rx_std_mapping = virt_to_bus(tpr->rx_std); in tg3_alloc_consistent()
157 tpr->rx_std_cons_idx = 0; in tg3_rx_prodring_alloc()
158 tpr->rx_std_prod_idx = 0; in tg3_rx_prodring_alloc()
168 rxd = &tpr->rx_std[i]; in tg3_rx_prodring_alloc()
249 tpr->rx_std_iob_cnt = 0; in tg3_open()
418 tpr->rx_std_iob_cnt++; in tg3_refill_prod_ring()
422 tpr->rx_std_prod_idx = idx; in tg3_refill_prod_ring()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/mul/clsfy/tests/
H A Dtest_binary_tree.cxx163 unsigned tpr=0; in test_binary_tree() local
180 ++tpr; in test_binary_tree()
187 double testTPR=double (tpr)/dtp; in test_binary_tree()
228 unsigned tpr=0; in test_binary_tree() local
245 ++tpr; in test_binary_tree()
271 unsigned tpr=0; in test_binary_tree() local
288 ++tpr; in test_binary_tree()
336 unsigned tpr=0; in test_binary_tree() local
353 ++tpr; in test_binary_tree()
481 unsigned tpr=0; in test_binary_tree() local
[all …]
/dports/security/hs-cryptol/cryptol-2.11.0/_cabal_deps/what4-1.1/src/What4/Expr/
H A DArrayUpdateMap.hs59 ArrayUpdateNote hx tpr ax <> ArrayUpdateNote hy _ ay =
60 ArrayUpdateNote (hx <> hy) tpr (withAbstractable tpr $ avJoin tpr ax ay)
75 mkNote tpr idx e = ArrayUpdateNote (mkIncrHash (hashWithSaltF (hash idx) e)) tpr (getAbsValue e) function
82 fromAscList tpr xs = ArrayUpdateMap (AM.fromAscList (fmap f xs)) function
84 f (k,e) = (k, mkNote tpr k e, e)
117 singleton tpr idx e = ArrayUpdateMap (AM.singleton idx (mkNote tpr idx e) e) function
126 insert tpr idx e (ArrayUpdateMap m) = ArrayUpdateMap (AM.insert idx (mkNote tpr idx e) e m) function
139 mergeM tpr both left right (ArrayUpdateMap ml) (ArrayUpdateMap mr) =
142 mk k x = (mkNote tpr k x, x)
/dports/science/votca/votca-2021.2-18560-gfbe18d971/csg/share/scripts/inverse/
H A Drun_gromacs.sh31 tpr="$(csg_get_property cg.inverse.gromacs.topol)"
88 for i in tpr mdp conf confout index topol_in checkpoint; do
141 …o "${dir}/$tpr" -c "${conf_x}" ${grompp_opts} 2>&1 | gromacs_log "${grompp[@]}" -n "${index_x}" -f…
154 …p "$topol_in" -o "$tpr" -c "${conf}" ${grompp_opts} 2>&1 | gromacs_log "${grompp[@]} -n "${index}"…
155 [[ -f $tpr ]] || die "${0##*/}: gromacs tpr file '$tpr' not found after runing grompp"
188tpr}" -c "${confout}" -o "${traj%.*}".trr -x "${traj%.*}".xtc ${multidir:+-multidir} "${multidir[@…

12345678910>>...52