Home
last modified time | relevance | path

Searched refs:particleIdx (Results 1 – 15 of 15) sorted by relevance

/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/io/
H A DColumn.h87 particleIdx, in evaluate()
90 return values[particleIdx]; in evaluate()
131 particleIdx, in evaluate()
134 return values[particleIdx]; in evaluate()
147 array.resize(particleIdx + 1); in accumulate()
180 return values[particleIdx]; in evaluate()
193 array.resize(particleIdx + 1); in accumulate()
216 particleIdx, in evaluate()
219 return values[particleIdx][H]; in evaluate()
228 array.resize(particleIdx + 1); in accumulate()
[all …]
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/gravity/
H A DAggregateSolver.cpp39 Aggregate(Storage& storage, const Size particleIdx) in Aggregate() argument
41 idxs.insert(particleIdx); in Aggregate()
42 persistentId = particleIdx; in Aggregate()
356 Aggregate& getAggregate(const Size particleIdx) { in getAggregate() argument
357 Aggregate& ag = *particleToAggregate[particleIdx]; in getAggregate()
358 SPH_ASSERT(ag.contains(particleIdx)); in getAggregate()
363 const Aggregate& getAggregate(const Size particleIdx) const { in getAggregate()
364 const Aggregate& ag = *particleToAggregate[particleIdx]; in getAggregate()
365 SPH_ASSERT(ag.contains(particleIdx)); in getAggregate()
460 Optional<Size> getAggregateId(const Size particleIdx) const { in getAggregateId()
[all …]
/dports/math/vtk8/VTK-8.2.0/IO/AMR/
H A DvtkAMRFlashParticlesReader.cxx276 vtkIdType particleIdx = ids->GetId( pidx ); in GetParticles() local
277 array->SetComponent( pidx, 0, data[ particleIdx ] ); in GetParticles()
299 vtkIdType particleIdx = ids->GetId( pidx ); in GetParticles() local
300 array->SetComponent( pidx, 0, data[ particleIdx ] ); in GetParticles()
H A DvtkAMREnzoParticlesReader.cxx354 vtkIdType particleIdx = ids->GetId( pidx ); in GetParticles() local
360 particleIdx,k ) ); in GetParticles()
/dports/math/vtk9/VTK-9.1.0/IO/AMR/
H A DvtkAMRFlashParticlesReader.cxx271 vtkIdType particleIdx = ids->GetId(pidx); in GetParticles() local
272 array->SetComponent(pidx, 0, data[particleIdx]); in GetParticles()
292 vtkIdType particleIdx = ids->GetId(pidx); in GetParticles() local
293 array->SetComponent(pidx, 0, data[particleIdx]); in GetParticles()
H A DvtkAMREnzoParticlesReader.cxx338 vtkIdType particleIdx = ids->GetId(pidx); in GetParticles() local
342 array->SetComponent(pidx, k, this->Internal->DataArray->GetComponent(particleIdx, k)); in GetParticles()
/dports/math/vtk6/VTK-6.2.0/IO/AMR/
H A DvtkAMRFlashParticlesReader.cxx276 vtkIdType particleIdx = ids->GetId( pidx ); in GetParticles() local
277 array->SetComponent( pidx, 0, data[ particleIdx ] ); in GetParticles()
299 vtkIdType particleIdx = ids->GetId( pidx ); in GetParticles() local
300 array->SetComponent( pidx, 0, data[ particleIdx ] ); in GetParticles()
H A DvtkAMREnzoParticlesReader.cxx354 vtkIdType particleIdx = ids->GetId( pidx ); in GetParticles() local
360 particleIdx,k ) ); in GetParticles()
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/timestepping/
H A DTimeStepCriterion.cpp52 Size particleIdx = 0; member
62 particleIdx = idx; in add()
68 this->add(other.minStep, other.value, other.derivative, other.particleIdx); in add()
82 stats.set(StatisticsId::LIMITING_PARTICLE_IDX, int(particleIdx)); in saveStats()
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/gui/
H A DController.cpp549 void Controller::setSelectedParticle(const Optional<Size>& particleIdx) { in setSelectedParticle() argument
551 vis.selectedParticle = particleIdx; in setSelectedParticle()
554 if (particleIdx && vis.colorizer->isInitialized()) { in setSelectedParticle()
555 const Rgba color = vis.colorizer->evalColor(particleIdx.value()); in setSelectedParticle()
556 Optional<Particle> particle = vis.colorizer->getParticle(particleIdx.value()); in setSelectedParticle()
559 particle->addValue(QuantityId::POSITION, vis.positions[particleIdx.value()]); in setSelectedParticle()
H A DController.h223 void setSelectedParticle(const Optional<Size>& particleIdx);
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/physics/
H A DIntegrals.cpp191 QuantityValue::QuantityValue(const QuantityId id, const Size particleIdx) in QuantityValue() argument
193 , idx(particleIdx) {} in QuantityValue()
H A DIntegrals.h215 QuantityValue(const QuantityId id, const Size particleIdx);
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/quantities/
H A DStorage.h428 MaterialView getMaterialOfParticle(const Size particleIdx) const;
H A DStorage.cpp388 MaterialView Storage::getMaterialOfParticle(const Size particleIdx) const { in getMaterialOfParticle()
389 SPH_ASSERT(!mats.empty() && particleIdx < matIds.size()); in getMaterialOfParticle()
390 return this->getMaterial(matIds[particleIdx]); in getMaterialOfParticle()