Home
last modified time | relevance | path

Searched refs:egb (Results 1 – 25 of 219) sorted by relevance

123456789

/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/interfaces/tests/
H A Dtest_pyomo_grey_box_nlp.py49 m.egb.inputs['c'].value = 2
50 m.egb.inputs['c'].setlb(1)
51 m.egb.inputs['c'].setub(5)
52 m.egb.inputs['F'].value = 3
53 m.egb.inputs['F'].setlb(1)
54 m.egb.inputs['F'].setub(5)
156 m.egb.inputs['c'].setlb(1)
157 m.egb.inputs['c'].setub(5)
159 m.egb.inputs['F'].setlb(1)
1436 m.pcon = pyo.Constraint(expr = m.egb.inputs['Pin'] - m.egb.outputs['Pout'] <= 72)
[all …]
H A Dtest_external_grey_box_model.py513 m.egb.inputs['c'].setlb(1)
514 m.egb.inputs['c'].setub(5)
516 m.egb.inputs['F'].setlb(1)
517 m.egb.inputs['F'].setub(5)
625 m.egb.inputs['c'].setlb(1)
626 m.egb.inputs['c'].setub(5)
628 m.egb.inputs['F'].setlb(1)
1234 m.pcon = pyo.Constraint(expr = m.egb.inputs['Pin'] - m.egb.outputs['Pout'] <= 72)
1257 m.obj = pyo.Objective(expr=(m.egb.outputs['Pout']-20)**2 + (m.egb.inputs['F']-3)**2)
1437 m.pcon = pyo.Constraint(expr = m.egb.inputs['Pin'] - m.egb.outputs['Pout'] <= 72)
[all …]
H A Dtest_dynamic_model.py344 m2.egb = ExternalGreyBoxBlock()
349 m2.egb.inputs['F1_{}'.format(t)].value = 1+0.1*t
350 m2.egb.inputs['F2_{}'.format(t)].value = 2+0.1*t
352 m2.egb.inputs['h1_{}'.format(t)].value = 3+0.1*t
353 m2.egb.inputs['h2_{}'.format(t)].value = 4+0.1*t
354 m2.egb.outputs['F12_{}'.format(t)].value = 5+0.1*t
355 m2.egb.outputs['Fo_{}'.format(t)].value = 6+0.1*t
359 F1_t = m.egb.inputs['F1_{}'.format(t)]
364 Fo_t = m.egb.outputs['Fo_{}'.format(t)]
367 m2.h10 = pyo.Constraint( expr=m2.egb.inputs['h1_0'] == 1.5 )
[all …]
H A Dtest_external_pyomo_block.py975 m.egb = ExternalGreyBoxBlock()
976 m.egb.set_external_model(
999 self.assertIs(m.egb.inputs.ctype, pyo.Var)
1000 self.assertIs(m.egb.outputs.ctype, pyo.Var)
1002 self.assertEqual(len(m.egb.inputs), len(inputs))
1003 self.assertEqual(len(m.egb.outputs), len(outputs))
1006 self.assertIs(inputs[i], m.egb.inputs[i])
1008 self.assertIs(outputs[i], m.egb.outputs[i])
/dports/science/xtb/xtb-6.4.1/src/solv/
H A Dkernel.f90110 egb = 0._wp
134 egb = egb + qfg*(gg-1.0_wp)
157 egb = egb + 0.5_wp*qq*qat(i)*aa
241 egb = egb + qq*keps*dfgb
262 egb = egb + 0.5_wp*qat(i)*qq*keps
344 egb = egb + qq*keps*dfgb
365 egb = egb + 0.5_wp*qat(iat)*qq*keps
452 egb = egb + qq*dfgb*(gg-1.0_wp)
478 egb = egb + 0.5_wp*qq*qat(i)*aa
554 egb = egb + qq*dfgb
[all …]
/dports/net/x2goclient/x2goclient-4.1.2.2/src/
H A Dsharewidget.cpp44 expTv=new QTreeView ( egb ); in ShareWidget()
49 ldir=new QLabel ( egb ); in ShareWidget()
62 QString::null,egb ); in ShareWidget()
83 ),egb ); in ShareWidget()
86 cbFrom=new QComboBox ( egb ); in ShareWidget()
87 cbTo=new QComboBox ( egb ); in ShareWidget()
88 lFrom=new QLabel ( tr ( "local:" ),egb ); in ShareWidget()
89 lTo=new QLabel ( tr ( "remote:" ),egb ); in ShareWidget()
102 "connections through firewalls" ),egb ); in ShareWidget()
105 expLay->addWidget ( egb ); in ShareWidget()
[all …]
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/examples/external_grey_box/param_est/
H A Dgenerate_data.py47 m.UA_spec_con = pyo.Constraint(expr=m.egb.inputs['UA'] == m.UA_spec)
48 m.Th_in_spec_con = pyo.Constraint(expr=m.egb.inputs['Th_in'] == m.Th_in_spec)
49 m.Tc_in_spec_con = pyo.Constraint(expr=m.egb.inputs['Tc_in'] == m.Tc_in_spec)
53 m.obj = pyo.Objective(expr=(m.egb.inputs['UA'] - m.UA_spec)**2)
72 data['Th_in'].append(pyo.value(m.egb.inputs['Th_in']))
73 data['Tc_in'].append(pyo.value(m.egb.inputs['Tc_in']))
74 data['Th_out'].append(pyo.value(m.egb.inputs['Th_out']))
75 data['Tc_out'].append(pyo.value(m.egb.inputs['Tc_out']))
H A Dperform_estimation.py69 return m.UA == m.model_i[i].egb.inputs['UA']
79 obj += (m.model_i[i].egb.inputs['Th_in'] - float(row['Th_in']))**2
80 obj += (m.model_i[i].egb.inputs['Tc_in'] - float(row['Tc_in']))**2
83 obj += (m.model_i[i].egb.inputs['Th_out'] - float(row['Th_out']))**2
84 obj += (m.model_i[i].egb.inputs['Tc_out'] - float(row['Tc_out']))**2
H A Dmodels.py64 m.egb = ExternalGreyBoxBlock()
65 m.egb.set_external_model(ex_model)
/dports/games/crafty/crafty-25.2_1/
H A Doption.c2980 egb = tree->pawn_score.score_eg - egb; in Option()
2996 egb = tree->score_eg; in Option()
2999 egb = tree->score_eg - egb; in Option()
3015 egb = tree->score_eg; in Option()
3018 egb = tree->score_eg - egb; in Option()
3034 egb = tree->score_eg; in Option()
3037 egb = tree->score_eg - egb; in Option()
3056 egb = tree->score_eg - egb; in Option()
3075 egb = tree->score_eg - egb; in Option()
3096 egb = tree->score_eg - egb; in Option()
[all …]
/dports/graphics/geos/geos-3.9.1/src/edgegraph/
H A DEdgeGraphBuilder.cpp52 EdgeGraphBuilder* egb; member
53 EdgeGraphLinestringFilter(EdgeGraphBuilder* p_egb): egb(p_egb) {} in EdgeGraphLinestringFilter()
60 egb->add(ls); in filter()
/dports/sysutils/goawk/goawk-1.9.2/testdata/output/
H A Dt.gsub4229 (1)(5) egb
230 (&)(&)(&)(&)(&)(&) egb
H A Dt.set0a346 egb
347 1 egb
348 egb
H A Dt.set0b346 egb
347 egb
348 egb
H A Dt.split3116 7 egb
H A Dt.printf116 %: egb ... 15 15 egb
H A Dt.set2116 egb egb
H A Dt.cond231 egb
H A Dt.nameval115 egb 15
H A Dt.a115 egb 15
H A Dt.in119 115 egb 15
H A Dt.463 15 egb
/dports/audio/py-music21/music21-7.1.0/music21/corpus/ryansMammoth/
H A DAutographHornpipe.abc14 |g>ec>G ((3EGB) ((3egb)|f>dB>F ((3DFA) ((3dfb)|\
H A DCosmopolitanHornpipe.abc11 ((3^gag) ((3efe) ((3BcB) ((3G"4"AG)|((3EGB) ((3egb) "0"e'2(u."2"c>.d)|
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/contrib/iapbs/modules/Amber/patches/
H A Damber9_sander.patch19 egb.o\
27 egb.LES.o\
35 egb.o\
43 egb.PIMD.o\

123456789