neighbor$52005$ - Definition. Was ist neighbor$52005$
Diclib.com
Wörterbuch ChatGPT
Geben Sie ein Wort oder eine Phrase in einer beliebigen Sprache ein 👆
Sprache:

Übersetzung und Analyse von Wörtern durch künstliche Intelligenz ChatGPT

Auf dieser Seite erhalten Sie eine detaillierte Analyse eines Wortes oder einer Phrase mithilfe der besten heute verfügbaren Technologie der künstlichen Intelligenz:

  • wie das Wort verwendet wird
  • Häufigkeit der Nutzung
  • es wird häufiger in mündlicher oder schriftlicher Rede verwendet
  • Wortübersetzungsoptionen
  • Anwendungsbeispiele (mehrere Phrasen mit Übersetzung)
  • Etymologie

Was (wer) ist neighbor$52005$ - definition

DATA STRUCTURE USEFUL IN COMPUTER SIMULATIONS OF SYSTEMS OF PARTICLES
Neighbor list

Nearest neighbor graph         
  • A nearest neighbor graph of 100 points in the [[Euclidean plane]].
TYPE OF DIRECTED GRAPH
Nearest neighbour graph; Nearest-neighbour graph; Farthest neighbor graph; Furthest neighbor graph; Nearest-neighbor graph; Farthest-neighbor graph; Furthest-neighbor graph
The nearest neighbor graph (NNG) is a directed graph defined for a set of points in a metric space, such as the Euclidean distance in the plane. The NNG has a vertex for each point, and a directed edge from p to q whenever q is a nearest neighbor of p, a point whose distance from p is minimum among all the given points other than p itself.
neighbor         
WIKIMEDIA DISAMBIGUATION PAGE
Neighbor (disambiguation); Neighbour; Neighbours (disambiguation); The Neighbor; Neighbors (disambiguation); The Neighbour; The Neighbor (disambiguation); The Neighbors; The Neighbors (TV series); Neighbor (film); Neighbors (film); Neighbours (film); Neighbors; Neighbor (song); Neighbors (song); Neighbours (song)
I
n. AE; BE spelling: neighbour
1) a next-door neighbor
2) a neighbor to (she was a good neighbor to us)
II
v. (esp. BE) (D; intr.) to neighbor on
neighbour         
WIKIMEDIA DISAMBIGUATION PAGE
Neighbor (disambiguation); Neighbour; Neighbours (disambiguation); The Neighbor; Neighbors (disambiguation); The Neighbour; The Neighbor (disambiguation); The Neighbors; The Neighbors (TV series); Neighbor (film); Neighbors (film); Neighbours (film); Neighbors; Neighbor (song); Neighbors (song); Neighbours (song)
(US neighbor)
¦ noun a person living next door to or very near to another.
?a person or place in relation to others next to it.
¦ verb [usu. as adjective neighbouring] be situated next to or very near (another).
Derivatives
neighbourless adjective
neighbourliness noun
neighbourly adjective
Origin
OE neahgebu?r, from neah 'nigh, near' + gebu?r 'inhabitant, peasant, farmer' (cf. boor).

Wikipedia

Verlet list

A Verlet list (named after Loup Verlet) is a data structure in molecular dynamics simulations to efficiently maintain a list of all particles within a given cut-off distance of each other.

This method may easily be applied to Monte Carlo simulations. For short-range interactions, a cut-off radius is typically used, beyond which particle interactions are considered "close enough" to zero to be safely ignored. For each particle, a Verlet list is constructed that lists all other particles within the potential cut-off distance, plus some extra distance so that the list may be used for several consecutive Monte Carlo "sweeps" (set of Monte Carlo steps or moves) before being updated. If we wish to use the same Verlet list n {\displaystyle n} times before updating, then the cut-off distance for inclusion in the Verlet list should be R c + 2 n d {\displaystyle R_{c}+2nd} , where R c {\displaystyle R_{c}} is the cut-off distance of the potential, and d {\displaystyle d} is the maximum Monte Carlo step (move) of a single particle. Thus, we will spend of order N 2 {\displaystyle N^{2}} time to compute the Verlet lists ( N {\displaystyle N} is the total number of particles), but are rewarded with n {\displaystyle n} Monte Carlo "sweeps" of order N n 2 {\displaystyle Nn^{2}} instead of N N {\displaystyle NN} . By optimizing our choice of n {\displaystyle n} it can be shown that Verlet lists allow converting the O ( N 2 ) {\displaystyle O(N^{2})} problem of Monte Carlo sweeps to an O ( N 5 / 3 ) {\displaystyle O(N^{5/3})} problem.

Using cell lists to identify the nearest neighbors in O ( N ) {\displaystyle O(N)} further reduces the computational cost.