Nodes Definition and 119 Threads
-
A
Question about multiple runtimes on MPI for MCNP6
When I increase the number of nodes in the simulation (e.g., -N 3), the number of runtpe files and outputs generated equals the number of nodes; in this case, three runtpe files and three outputs appear. Each output has a different simulation time, and sometimes even different results. Is this...- Alexander Camargo
- Thread
- Nodes Simulation
- Replies: 5
- Forum: Nuclear Engineering
-
F
Comp Sci Creating a City Graph with Nodes & Edges
Edit: Trying to fix the formatting... class Node(object): def __init__(self, name): self.name = str(name) def get_name(self): return self.name def __str__(self): return self.name class Edge(object): def __init__(self, src, dest): self.src =...- fishturtle1
- Thread
- Graph Nodes
- Replies: 4
- Forum: Engineering and Comp Sci Homework Help
-
Displacement nodes for overtones
(4 / 3) * (1.8) = 2.4 = lambda 1st overtone: 2.4 / 4 = .6; (2.4 * 3) / 4 = 1.8- vel
- Thread
- Displacement Nodes Phy homework Standing waves
- Replies: 12
- Forum: Introductory Physics Homework Help
-
Where are the pressure nodes on a standing acoustic wave in water?
I have calculated the wave length of a 36 kHz acoustic wave in 20 °C water to be around 41.16mm. Suppose I have a transducer that produces a 36 kHz acoustic wave and a small water container with a length of 41.6 mm. How will the standing acoustic wave look like, which is produced by the...- bubble-flow
- Thread
- Acoustic Acoustic waves Nodes Pressure Standing wave Water Wave
- Replies: 7
- Forum: Electromagnetism
-
M
MHB Nodes and weight of Gauss Quadrature
Hey! :giggle: Calculate the node $x_0$ and the weight $a_0$ of Gauss Quadrature so that $$\int_0^1w(x)f(x)\, dx\approx I_0(f)=a_0f(x_0)$$ where $w(x)=1+\sqrt{x}$. I have done the following: The Gauss quadrature formula with $(n + 1)=1$ node (i.e. $n=0$) integrates polynomials of degree $2n +...- mathmari
- Thread
- Gauss Nodes Weight
- Replies: 4
- Forum: General Math
-
Voltage restriction for nodes on the same branch?
originally ,I want to prove (TT:current can only flow from c to d),thus I try to figure out what will happen if Vd >Vc,then I label corresponding current direction.Afterwards,I know what's wrong: (A:current doesn't flow out of d ),then I attempted to prove A ,yet I consider that A might not...- asd852
- Thread
- Branch Circuit analysis Nodes Voltage
- Replies: 9
- Forum: Introductory Physics Homework Help
-
Nodes in a decentralised manufacturing system
What is meant by the nodes of a decentralised manufacturing system? Are these the points where the manufacturing is carried out?- Student abc
- Thread
- Manufacturing Nodes System
- Replies: 1
- Forum: General Engineering
-
R
How many nodes of each degree are there in this graph?
there must be an even number of vertices of odd degree, and from the handshake theorem, 2m = 2(12) = 24 the only way we can get this from 6 vertices using 2 and 5 is: 4 vertices of degree 5, 2 vertices of degree 2 does this seem correct??- r0bHadz
- Thread
- Degree Graph Nodes
- Replies: 3
- Forum: Precalculus Mathematics Homework Help
-
J
Meshing & connection issues for a beam/line solid
I designed two geometries (one for beam/line reinforcements and other second for a solid block shown below) in Ansys workbench spaceclaim for static structural analysis. In Ansys workbench Mechanical, I got a weird mesh for the reinforcements which I modeled as beam in Spaceclaim (shown...- jackhero
- Thread
- Ansys mechanical Connection Issues Mechanical Meshing Nodes Solid
- Replies: 1
- Forum: Mechanical Engineering
-
R
Engineering RC Circuit/Node voltage question
Homework Statement Homework Equations The Attempt at a Solution So you need to find the voltage across node D while the capacitor is charging, so it is going to be related to the voltage of the capacitor, so a function of time, so you need to come up with the equation for Vc(t), which I...- RED119
- Thread
- 555 timer Capacitors Nodes Rc Rc circuit Voltage
- Replies: 3
- Forum: Engineering and Comp Sci Homework Help
-
I Dimensions of Angular and Radial Nodes
Radial and angular nodes are simply a region where the wavefunction is zero. But speaking about their dimensions, do they have any thickness or are they just an infinitesimal point in space without dimensions? Thanks a lot!- sams
- Thread
- Angular Atomic physics Dimensions General chemistry Nodes Radial
- Replies: 3
- Forum: Atomic and Condensed Matter
-
E
Difference between pressure antinodes and displacement node?
Homework Statement An organ pipe with one end open and the other closed is operating at one of its resonant frequencies. The open and closed ends are respectively: A. pressure node, pressure node B. pressure node, displacement node C. displacement antinode, pressure node D. displacement node...- eprparadox
- Thread
- Difference Displacement Nodes Pressure
- Replies: 1
- Forum: Introductory Physics Homework Help
-
C
B Node at a closed end and an antinode at a open end of a tube
What causes there to be a node at a closed end of an air column and an antinode at the open end of a air column? Why doesn't it change as the wave oscillates?- Cardinalmont
- Thread
- Closed Nodes Tube Waves
- Replies: 1
- Forum: Other Physics Topics
-
S
Algorithm for computing the depths of all the nodes of tree
Homework Statement Give an algorithm for computing the depths of all the nodes of a tree T, where n is the number of nodes of T. a) What is the complexity of your algorithm in terms of Big-O? b) What is the best possible complexity that you believe can be achieved when solving such problem...- s3a
- Thread
- Algorithm Computing Nodes Tree
- Replies: 1
- Forum: Engineering and Comp Sci Homework Help
-
Finding Nodes in a Standing Wave at 800 Hz
Homework Statement Two identical loudspeakers are driven in phase by a common oscillator at 800 Hz and face each other at a distance of 1.25 m. Locate the points along the line joining the two speakers where relative minima of sound pressure amplitude would be expected. Homework Equations v...- Const@ntine
- Thread
- Nodes Standing wave Wave
- Replies: 4
- Forum: Introductory Physics Homework Help
-
V
Circuit with two voltage sources, finding voltage at nodes
Okay, so why is it that Vc assumed to be 12v - 0.7v (D1), how about contribution from the 9v battery?? Why is this not affecting the voltage at node C? Why Vc isn't 9v - 0.7v (D2) = 8.3v?- vizakenjack
- Thread
- Circuit Circuits Diode circuit Node analysis Node voltage Nodes Sources Voltage
- Replies: 19
- Forum: Electrical Engineering
-
S
Can someone code review my "Distance between nodes in a BT"?
Here's the solution I used for an online coding test with a major employer and I got rejected. Let me know about improvements I could make. Thanks. using System; using System.Collections.Generic; using System.Linq; class Node { public int Val { get; set; } public Node Right { get...- SlurrerOfSpeech
- Thread
- Code Nodes Review
- Replies: 3
- Forum: Programming and Computer Science
-
A
Efficient way to solve truss by hand
Homework Statement Hello. Given the statically determinate truss shown in the image, solve for all forces in the members, in terms of the load P. Homework Equations Equations of equilibrium. Node analysis. Section analysis. The Attempt at a Solution I was able to solve it by solving first...- arestes
- Thread
- Equilibrium hand Nodes Reactions Truss
- Replies: 7
- Forum: Engineering and Comp Sci Homework Help
-
S
I Physical significance of nodes?
Hi, II have an issue with nodes in QM, like suppose in a well, the number of nodes depend on (n-1), the thing is that, what is so special(physically) about the point that the particle cannot be located there? Thanks is advance- Sheldon Cooper
- Thread
- Nodes Physical Significance
- Replies: 4
- Forum: Quantum Physics
-
S
I Understanding Coherence in Quantum Mechanics
Hi, Can anyone please explain the physical meaning of coherence(Quantum Mechanics). Thanks is advance- Sheldon Cooper
- Thread
- Coherence In quantum mechanics Mechanics Nodes Quantum Quantum mechanics Schrodinger equation Wave function
- Replies: 3
- Forum: Quantum Physics
-
N
MHB Fixing Code to Print "Print": Nodes and Pointers Programming Error
what is wrong with my programming D: won't print out the "Print" #include <iostream> #include <cstdlib> #include<string> using namespace std; class Node { public: Node(); Node* prev; string key; Node* next; }; Node::Node() { prev = 0; next = 0; return; }...- needOfHelpCMath
- Thread
- Nodes Pointers
- Replies: 2
- Forum: Programming and Computer Science
-
I Ionization and Nodes in the Hydrogen Wave Function
As you can see from figure 4.4 from Griffiths book on QM, the radial wave function of the hydrogen atom has clear points where ## |R_{nl} (r)|^2 = 0 ##. My question is three fold: First, how is the electron able to traverse this region? My intuition is that with the uncertainty principle, the...- Jamison Lahman
- Thread
- Function Hydrogen Ionization Nodes Wave Wave function
- Replies: 3
- Forum: Quantum Physics
-
A Counting Radial Nodes between Orbitals with Same l
Dear Everyone, Could anyone explain why we count only the number of radial nodes between the subshells that have the same orbital angular momentum l ? For example, 3p-orbitals have 1 radial node that exists between the 3p- and 2p-orbitals. Shouldn't be there additional radial nodes that exist...- sams
- Thread
- Atomic physics Counting Nodes Orbitals Radial
- Replies: 3
- Forum: Atomic and Condensed Matter
-
H
Positions of nodes on a resonating wine glass & symmetry
When immersed in a high-frequency sound, the rim of a wine glass oscillates as shown in the picture below. If the sound has equal intensity in all directions from the center of the rim, then where are the nodes of the stationary waves (in the rim)? By symmetry, every point on the rim is the... -
C
Pressure standing wave nodes at the end of the open side of
I do not understand why standing sound waves can be formed in a one-side or two-side open tube. Consider a one-side open tube. In particular how does the reflection of the wave at the open end occur? I found the following explanation. I do not get why the pressure at the open end cannot vary... -
R
Standing Wave Nodes and Interference on a Stretched String
Homework Statement Two sinusodial waves, each of wavelength 5m and amplitude 10cm, travel in opposite directions on a 20m streched string which is clamped at each end. Excluding the nodes at the ends , how many nodes appear in the resulting standing wave? Homework EquationsThe Attempt at a...- RUphysics3
- Thread
- Nodes Waves
- Replies: 1
- Forum: Introductory Physics Homework Help
-
T
Radial Nodes of an Orbital: Probability of Electrons
In a radial node of an orbital, say of 3px orbital, is the probablity for finding the 3px electron there is 0 but an electron of another orbital, say 2px, can be found there, OR the chance of finding electron of any orbital in a node of a certain orbital is 0? -
H
Must even functions have even number of nodes?
The following text considers the possible wave functions when the potential is symmetric about ##x=0##. Why must even functions have an even number of nodes? ##y=sin^2x## is even but always have an odd number of nodes in any interval centred about ##x=0##. The part preceding the above text:- Happiness
- Thread
- even Functions Nodes
- Replies: 21
- Forum: Quantum Physics
-
How to calculate Clock Skew of nodes in a distributed system
A distributed system has 3 nodes ##N_1##, ##N_2## and ##N_3##, each having its own clock. The clocks of nodes ##N_1##, ##N_2## and ##N_3## tick 800, 810 and 795 times/ms. The system uses the external synchronization mechanism, in which all 3 nodes receive the real time every 30 seconds from...- 22990atinesh
- Thread
- Clock Distributed Network Nodes System
- Replies: 5
- Forum: Engineering and Comp Sci Homework Help
-
M
Are nodes on a string perfect nulls?
Maybe I'm thinking about this incorrectly, but I would assume that the wave loses energy after bouncing back and before hitting the wave moving in the opposite direction. Wouldn't this prevent a perfect null (if the amplitudes were different)?- musichascolors
- Thread
- Nodes String
- Replies: 4
- Forum: Other Physics Topics
-
D
Binary search tree, number of nodes formula
Homework Statement Hello! Typical binary search tree has a number of nodes equal to 2^(n+1) - 1. I don't understand why we add 1 to the n? For example: a tree has a height 4. # # # # # # # # # # # # # # # each level has 2^i nodes; i = 0, 2^0...- ducmod
- Thread
- Binary Formula Nodes Search Tree
- Replies: 2
- Forum: Precalculus Mathematics Homework Help
-
Nodal analysis, choosing number of nodes confusion
Good evening people. Recently I started taking the "electric network analysis" course in my school. We already saw the mesh analysis method for solving circuits. Now we are seeing the node analysis method. I understand that the first step for this method is finding the number of nodes (and one...- thegreengineer
- Thread
- Analysis Circuit analysis Confused Confusing Confusion Doubt Electronics Kirchoff's current law Nodal Nodal analysis Node analysis Node voltage Nodes
- Replies: 1
- Forum: Electrical Engineering
-
C
How do you calculate the voltage between two charged nodes?
If: 1) you know the vertex and individual charge of each node and 2) voltage is the difference in electric potential energy between two nodes How do you calculate the voltage in a vacuum?- Cuppasoup
- Thread
- Charge Charged Electricity Nodes Voltage
- Replies: 10
- Forum: Electromagnetism
-
P
Advection equation stability for explicit scheme
Hello, I have a typical 1D advection problem where a cold fluid flows over a flat plate. I did an energy balance to include conduction, convection and friction loss and I got the PDE's for the fluid and the solid. I used finite differences to solve the system as T(x, t) for both fluid and...- pomekrank
- Thread
- Convergence Explicit Nodes Stability
- Replies: 2
- Forum: Differential Equations
-
Y
Why do open holes in air instruments act as pressure nodes?
Just out of curiousity, why is this? I'm reading this page right here: http://newt.phys.unsw.edu.au/jw/fluteacoustics.html#registerhole A dark hole on the flute means the button is closed, and each white hole means the button is open (open to atmospheric pressure). You can see from the...- yosimba2000
- Thread
- Act Air Holes Instruments Nodes Pressure
- Replies: 2
- Forum: Mechanics
-
M
MHB Graphs with N Nodes: Proving Cliques and Anti-Cliques
Hey! :o Let $G$ be a graph. A clique in $G$ is a subgraph in which every two nodes are connected by an edge. An anti-clique, also called an independent set, is a subgraph in which every two nodes are not connected by an edge. Show that every graph with $n$ nodes contains either a clique or an...- mathmari
- Thread
- Graph Nodes
- Replies: 6
- Forum: Set Theory, Logic, Probability, Statistics
-
Nodes in a standing wave and energy transmittance
I am sure this has been answered many times. But I've read about 40 posts on standing waves, and I still have a "standing" question. I am having a hard time visualizing how energy can be transmitted at a node of a standing wave. Basically, how can an immobile point be pulling on its...- itchybrain
- Thread
- Energy Nodes Standing wave Wave
- Replies: 8
- Forum: Other Physics Topics
-
MHB Deleting Leaf Nodes from an Ordered Binary Tree
Hi! (Nerd) Given a tree, I want to write an algorithm, that deletes from each node, from the corresponding ordered binary tree, the rightmost child, that is a leaf. That's what I have tried: Algorithm(NODE *P){ if (P==NULL) return error; if (P->RC!=NULL) P=P->RC; if (P->LC!=NULL)...- evinda
- Thread
- Binary Nodes Tree
- Replies: 2
- Forum: Programming and Computer Science
-
MHB Inserting Nodes After Q: Let's Double Check!
Hi! (Smirk) According to my notes, if we want to insert a node pointed to by P just after node poited to by Q, we have to do the following changements: $$\begin{pmatrix} P->prev\\ P->next\\ Q->next\\ Q->next->prev \end{pmatrix} \leftarrow \begin{pmatrix} Q\\ Q->next\\ P\\ P...- evinda
- Thread
- Nodes
- Replies: 4
- Forum: Programming and Computer Science
-
M
How many nodal lines for two point sources at 2.5 lamda separation?
Homework Statement How many nodal lines are created by two point sources emitting at the same wavelength that are separated by a distance equal to 2.5 lamda? Homework Equations My textbook says, "If two coherent sources located a distance d apart emit identical waves of wavelength lamda, then...- MaryCate22
- Thread
- Interference Lines Nodal Nodes
- Replies: 1
- Forum: Introductory Physics Homework Help
-
C
Direction of Current between nodes
Say for example you had the following circuit. Since it is hard to determine which source will have a bigger influence on current I am unsure of how I would determine which way the current would flow between each node.- cavalieregi
- Thread
- Current Direction Nodal analysis Nodes
- Replies: 7
- Forum: Introductory Physics Homework Help
-
M
Equation of motion for a massless spring system
Homework Statement Homework Equations f_spring = k(x_near - x_far) The Attempt at a Solution a. FBD: The force goes through the nodes, and the sum of the forces must be 0 because the nodes are massless. Therefore, kx_1 = x(t) So x_1(t) = x(t)/k b. FBD: For this system, the parallel...- mintsnapple
- Thread
- Displacement Engineering Equation of motion Massless Motion Nodes Spring Springs System Systems
- Replies: 11
- Forum: Engineering and Comp Sci Homework Help
-
C
Find the potential difference between 2 junctions (nodes)
Hello, I'm wondering how to determine the value of the potential difference between two points (junctions specifically) in a circuit with 2 emfs. The junctions are points x and y in the circuit below. I thought I could use the junction rule to determine the current at each junction... -
Find Energy of Antinode & Node in Standing Wave of Time Period T
a standing wave of time period T is set up in a string clamped between two rigid supports. at t=0 antinode is at its maximum diaplacement 2A. at what time will the energy of antinode be equal to that of a node? what i know is... that node has zero amplitude..n antinode has maximum...- varunika
- Thread
- Nodes
- Replies: 16
- Forum: Introductory Physics Homework Help
-
When Will Node and Antinode Energies Be Equal?
at what time will the energy of a node be equal to energy of an antinode when the time period is T?- varunika
- Thread
- Energy Nodes
- Replies: 3
- Forum: Other Physics Topics
-
How does the Sync.field synchronize slave nodes in a serial communic?
Serial communication:Following the Break is the Sync.field. The literature says that as there are no quartz or ceramic resonators in the slave nodes,the sync.field is transported before the protected ID field.I do not understand 2 things here: 1.What does it actually mean for the slave nodes...- marellasunny
- Thread
- Nodes Serial
- Replies: 5
- Forum: Electrical Engineering
-
S
M-ary Tree: Given Nodes, find leaves
Homework Statement (I'm struggling with trees now so I expect to have a lot more questions on here like this) I have a 4-ary tree with 173 nodes. How many leaves do I have? Homework Equations The Attempt at a Solution So I know that each node, if it is not a leaf, will have 4...- scorpius1782
- Thread
- Nodes Tree
- Replies: 9
- Forum: Engineering and Comp Sci Homework Help
-
Equivalent resistance between two nodes help
Homework Statement Homework Equations Parallel-Series resistors combinations. The Attempt at a Solution Using an approach much like the one used to find the Thevinin resistance: 1- Open circuit between A and B (R1, R2, R3), and short circuit the voltage source. 2- (R4//R5)+R6=170 3-...- JasonHathaway
- Thread
- Equivalent Equivalent resistance Nodes Resistance
- Replies: 9
- Forum: Engineering and Comp Sci Homework Help
-
W
Deleting Nodes w/ 2 Children from a BST
I guess the problem is mostly due to the fact that I still don't understand recursion very well. What my prof is trying to do is to teach it to us by directly applying it to data structures that may use them, such as the Binary Search Tree. I've already been able to delete a node with no...- whoareyou
- Thread
- Children Nodes
- Replies: 6
- Forum: Engineering and Comp Sci Homework Help
-
G
Solving for current between 2 nodes
Homework Statement Assume that I = 22mA , V = 6.0V , and R = 350Ω. Determine the current between B and D using the superposition principle. Homework Equations V=IR Superposition Principle G=1/R Voltage and Current dividers KCL, KVL The Attempt at a Solution I_BD = I_BD' +...- grekin
- Thread
- Current Nodes
- Replies: 7
- Forum: Introductory Physics Homework Help