Home
last modified time | relevance | path

Searched refs:flux (Results 76 – 100 of 5121) sorted by relevance

12345678910>>...205

/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/lib/atc/
H A DWeakEquationPoisson.cpp28 DENS_MAT_VEC &flux) const in B_integrand()
31 material->electric_displacement(fields, grad_fields, flux); in B_integrand()
32 flux[0] *= -1; in B_integrand()
33 flux[1] *= -1; in B_integrand()
34 flux[2] *= -1; in B_integrand()
52 DENS_MAT &flux) const in N_integrand()
54 return material->electron_charge_density(fields,flux); // - N rho_+ = N n in N_integrand()
83 DENS_MAT &flux) const in N_integrand()
89 flux = -1.0*n; in N_integrand()
H A DWeakEquationMomentum.cpp40 DENS_MAT_VEC &flux) const in B_integrand()
42 material->stress(fields, grad_fields, flux); in B_integrand()
50 DENS_MAT &flux) const in N_integrand()
52 return material->body_force(fields, flux); in N_integrand()
84 DENS_MAT &flux) const in N_integrand()
89 flux.resize(_E_[0].nRows(),nsd); in N_integrand()
94 CLON_VEC fi = column(flux,i); in N_integrand()
133 DENS_MAT_VEC &flux) const in B_integrand()
135 material->viscous_stress(fields, grad_fields, flux); in B_integrand()
153 DENS_MAT &flux) const in N_integrand()
[all …]
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib1/localConcepts/rjtd/
H A Dname.def189 #Latent heat flux
190 'Latent heat flux' = {
194 #Sensible heat flux
195 'Sensible heat flux' = {
256 #Ground heat flux
257 'Ground heat flux' = {
393 #Upward mass flux
394 'Upward mass flux' = {
868 #Long wave radiation flux
873 #Short wave radiation flux
[all …]
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib1/localConcepts/rjtd/
H A Dname.def189 #Latent heat flux
190 'Latent heat flux' = {
194 #Sensible heat flux
195 'Sensible heat flux' = {
256 #Ground heat flux
257 'Ground heat flux' = {
393 #Upward mass flux
394 'Upward mass flux' = {
868 #Long wave radiation flux
873 #Short wave radiation flux
[all …]
/dports/astro/p5-Astro-Flux/Astro-Flux-0.01/
H A DFlux.pm102 my $flux = {};
104 $flux->{QUANTITY} = { uc($type) => $quantity };
105 $flux->{WAVEBAND} = $waveband;
106 $flux->{TYPE} = uc( $type );
110 $flux->{QUALITY} = $args{'quality'};
114 $flux->{REFERENCE_WAVEBAND} = $args{'reference_waveband'};
119 $flux->{TIME} = $args{'datetime'};
123 $flux->{OBSID} = $args{'obsid'};
126 bless( $flux, $class );
127 return $flux;
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/16/
H A D4.2.0.4.table2 0 0 Net short-wave radiation flux (surface) (W m-2)
3 1 1 Net short-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Short-wave radiation flux (W m-2)
5 3 3 Global radiation flux (W m-2)
9 7 7 Downward short-wave radiation flux (W m-2)
10 8 8 Upward short-wave radiation flux (W m-2)
11 9 9 Net short wave radiation flux (W m-2)
13 11 11 Net short-wave radiation flux, clear sky (W m-2)
15 13 13 Direct short wave radiation flux (W m-2)
16 14 14 Diffuse short wave radiation flux (W m-2)
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/16/
H A D4.2.0.4.table2 0 0 Net short-wave radiation flux (surface) (W m-2)
3 1 1 Net short-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Short-wave radiation flux (W m-2)
5 3 3 Global radiation flux (W m-2)
9 7 7 Downward short-wave radiation flux (W m-2)
10 8 8 Upward short-wave radiation flux (W m-2)
11 9 9 Net short wave radiation flux (W m-2)
13 11 11 Net short-wave radiation flux, clear sky (W m-2)
15 13 13 Direct short wave radiation flux (W m-2)
16 14 14 Diffuse short wave radiation flux (W m-2)
/dports/science/v_sim/v_sim-3.8.0/src/coreTools/
H A DtoolFortran.h87 gboolean tool_files_fortran_readCharacter(ToolFiles *flux, char *var, gsize nb,
90 gboolean tool_files_fortran_readString(ToolFiles *flux, gchar **var, gsize nb,
93 gboolean tool_files_fortran_readInteger(ToolFiles *flux, gint *var,
95 gboolean tool_files_fortran_readIntegerArray(ToolFiles *flux, GArray **var, gsize nb,
98 gboolean tool_files_fortran_readRealArray(ToolFiles *flux, GArray **var, gsize nb,
101 gboolean tool_files_fortran_readDouble(ToolFiles *flux, double *var,
103 gboolean tool_files_fortran_readDoubleArray(ToolFiles *flux, GArray **var, gsize nb,
106 gboolean tool_files_fortran_readFlag(ToolFiles *flux, gsize *nb,
109 gboolean tool_files_fortran_testEndianness(ToolFiles *flux, gsize nb,
112 gboolean tool_files_fortran_checkFlag(ToolFiles *flux, gsize ncheck,
/dports/science/fastjet/fastjet-3.3.4/plugins/SISCone/siscone/siscone/
H A Dquadtree.cpp261 int Cquadtree::save(FILE *flux){ in save() argument
263 if (flux==NULL) in save()
268 children[0][0]->save(flux); in save()
269 children[0][1]->save(flux); in save()
270 children[1][0]->save(flux); in save()
271 children[1][1]->save(flux); in save()
287 int Cquadtree::save_leaves(FILE *flux){ in save_leaves() argument
289 if (flux==NULL) in save_leaves()
293 if (children[0][0]!=NULL) children[0][0]->save_leaves(flux); in save_leaves()
294 if (children[0][1]!=NULL) children[0][1]->save_leaves(flux); in save_leaves()
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/lib/atc/
H A DWeakEquationMomentum.cpp40 DENS_MAT_VEC &flux) const in B_integrand()
42 material->stress(fields, grad_fields, flux); in B_integrand()
50 DENS_MAT &flux) const in N_integrand()
52 return material->body_force(fields, flux); in N_integrand()
84 DENS_MAT &flux) const in N_integrand()
89 flux.resize(_E_[0].nRows(),nsd); in N_integrand()
94 CLON_VEC fi = column(flux,i); in N_integrand()
133 DENS_MAT_VEC &flux) const in B_integrand()
135 material->viscous_stress(fields, grad_fields, flux); in B_integrand()
153 DENS_MAT &flux) const in N_integrand()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/influxdata/influxdb/flux/stdlib/influxdata/influxdb/
H A Dbuckets.go45 _, _ = b.AddCol(flux.ColMeta{
47 Type: flux.TString,
49 _, _ = b.AddCol(flux.ColMeta{
51 Type: flux.TString,
53 _, _ = b.AddCol(flux.ColMeta{
55 Type: flux.TString,
57 _, _ = b.AddCol(flux.ColMeta{
59 Type: flux.TString,
61 _, _ = b.AddCol(flux.ColMeta{
63 Type: flux.TString,
[all …]
/dports/astro/py-astlib/astLib-0.11.7/astLib/
H A DastSED.py212 self.flux=numpy.array(flux)
256 flux=[]
272 self.flux=numpy.array(flux)
374 self.flux=self.flux+self.z0flux
379 self.flux=self.flux*(z0TotalFlux/zTotalFlux)
417 self.flux=self.flux*norm
441 self.flux=self.flux*(matchFlux/selfFlux)
529 flux=[]
620 flux=[]
630 self.flux=numpy.array(flux, dtype=numpy.float64)
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/influxdata/influxdb/flux/stdlib/influxdata/influxdb/
H A Dbuckets.go47 _, _ = b.AddCol(flux.ColMeta{
49 Type: flux.TString,
51 _, _ = b.AddCol(flux.ColMeta{
53 Type: flux.TString,
55 _, _ = b.AddCol(flux.ColMeta{
57 Type: flux.TString,
59 _, _ = b.AddCol(flux.ColMeta{
61 Type: flux.TString,
63 _, _ = b.AddCol(flux.ColMeta{
65 Type: flux.TInt,
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/influxdata/influxdb/query/
H A Dencode.go26 func (d *NoContentDialect) Encoder() flux.MultiResultEncoder {
30 func (d *NoContentDialect) DialectType() flux.DialectType {
40 func (e *NoContentEncoder) Encode(w io.Writer, results flux.ResultIterator) (int64, error) {
44 if err := results.Next().Tables().Do(func(tbl flux.Table) error {
45 return tbl.Do(func(cr flux.ColReader) error {
77 func (d *NoContentWithErrorDialect) Encoder() flux.MultiResultEncoder {
83 func (d *NoContentWithErrorDialect) DialectType() flux.DialectType {
96 func (e *NoContentWithErrorEncoder) Encode(w io.Writer, results flux.ResultIterator) (int64, error)…
102 if err := results.Next().Tables().Do(func(tbl flux.Table) error {
103 return tbl.Do(func(cr flux.ColReader) error {
/dports/astro/p5-Astro-Catalog/Astro-Catalog-4.36/lib/Astro/Catalog/IO/
H A DRITMatch.pm110 my $flux = new Astro::Flux(
115 push @mags, $flux;
210 my $flux;
215 $flux = $allflux[0];
216 $refwb = $flux->waveband->natural;
219 $flux = $fluxes->flux(type => $mag_type, waveband => $refwb);
222 next unless defined $flux;
223 next if uc($flux->type) ne uc($mag_type);
225 my $magval = $flux->quantity($mag_type);
/dports/astro/astrometry/astrometry.net-0.85/solver/
H A Dresort-xylist.c30 double *flux = NULL, *back = NULL; in resort_xylist() local
108 flux = fitstable_read_column(tab, fluxcol, TFITS_BIN_TYPE_D); in resort_xylist()
109 if (!flux) { in resort_xylist()
123 debug("flux %g, background %g\n", flux[i], back[i]); in resort_xylist()
127 back[i] += flux[i]; in resort_xylist()
130 perm1 = permuted_sort(flux, sizeof(double), compare, NULL, N); in resort_xylist()
141 assert(flux[perm1[i]] <= flux[perm1[i+1]]); in resort_xylist()
144 assert(flux[perm1[i]] >= flux[perm1[i+1]]); in resort_xylist()
174 free(flux); in resort_xylist()
175 flux = NULL; in resort_xylist()
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/influxdata/influxdb/flux/stdlib/influxdata/influxdb/
H A Dbuckets.go62 _, _ = b.AddCol(flux.ColMeta{
64 Type: flux.TString,
66 _, _ = b.AddCol(flux.ColMeta{
68 Type: flux.TString,
70 _, _ = b.AddCol(flux.ColMeta{
72 Type: flux.TString,
74 _, _ = b.AddCol(flux.ColMeta{
76 Type: flux.TString,
78 _, _ = b.AddCol(flux.ColMeta{
80 Type: flux.TInt,
[all …]
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/19/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/20/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/17/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/18/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/23/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/17/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/18/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/20/
H A D4.2.0.5.table2 0 0 Net long-wave radiation flux (surface) (W m-2)
3 1 1 Net long-wave radiation flux (top of atmosphere) (W m-2)
4 2 2 Long-wave radiation flux (W m-2)
5 3 3 Downward long-wave radiation flux (W m-2)
6 4 4 Upward long-wave radiation flux (W m-2)
7 5 5 Net long-wave radiation flux (W m-2)
8 6 6 Net long-wave radiation flux, clear sky (W m-2)
10 8 8 Downward long-wave radiation flux, clear sky (W m-2)

12345678910>>...205