Science topics: MathematicsConvergence
Science topic

Convergence - Science topic

Explore the latest questions and answers in Convergence, and find Convergence experts.
Questions related to Convergence
  • asked a question related to Convergence
Question
2 answers
I'm trying to optimize Vanadium atom for formation energy calculation, but there is a convergence problem.
I set the optimization steps to 2000 and electron_maxstep = 2000, but I don't know where the issue lies, and I am new to this.
I added input and output files.
Thanks for your help
Relevant answer
Answer
Here are a few things that might help.
For a single atom, you don't need such a large unit cell, something like 10Å×10Å×10Å should be enough. Also, use ibrav=1 for a cubic lattice (you just need a box with the atom in it). As for K-mesh, use 1x1x1 since there is no periodicity to sample. Furthermore, there are four 'starting_magnetization(i)' why? ~keep just one (choose accordingly). Your values for ecutrho and ecutwfc are very high. Consider reducing them to something like 240 Ry and 40 Ry (4×ecutwfc for ecutrho is standard). Finally, ion_dynamics = 'bfgs' is unnecessary for a single atom. Instead, use calculation ='scf' or 'relax'.
These changes will very likely resolve your convergence issue.
Hope that helps,
Rgds
  • asked a question related to Convergence
Question
3 answers
Hi fellow researchers,
is there any ABAQUS verfification UMAT subroutine for thermo-elastoplaticity. I have written the attached subroutine file for the same using temperature independent properties but am not able to achieve convergence. I modified this code from the UMAT for elastoplasticity. If possible please provide me your valuable suggestion on my code or direct me to a source. Thank you.
regards
Shufen
Relevant answer
Answer
Hi! I know that the question is posted a long time ago. I wonder if it worked with you.
  • asked a question related to Convergence
Question
7 answers
Currently, I am optimizing YAlO₃ doped with lanthanide elements. For simpler elements like Ce and Pr, everything works fine. However, when doping with Yb, something strange happens: the calculation runs for a long time but never converges.
Initially, I set IBRION = 2, and later changed it to IBRION = 3, but neither setting produced a result.
Below are my INCAR settings and part of the OUTCAR output:
INCAR:
ALGO = Normal
EDIFF = 1E-04
ENCUT = 520
IBRION = 3
POTIM = 0.5
ISIF = 7
ISMEAR = 0
ISPIN = 2
LCHARG = True
#LORBIT = 11
LREAL = Auto
LWAVE = True
MAGMOM = 79*0.6 1*4.0
NELM = 100
NSW = 100
PREC = Accurate
SIGMA = 0.05
LDAU = .TRUE.
LDAUTYPE = 2
LDAUL = 2 -1 -1 3 # l-quatum no (-1:no U , 2:d group metals, 3:f group metals)(Y Al O Yb)
LDAUU = 3 0 0 3 # for Yb:3 and O:0 (U values (eV))
LDAUJ = 0 0 0 0 # J values (For lDAUTYPE=2, Ueff=U-J)
LMAXMIX = 6 # 4 for d-electrons, 6 for f-electrons
LDAUPRINT = 2 # 0:silent, 1:Write occupancy matrix to OUTCAR, 2: 1+potential matrix, Default : LDAUPRINT=0
LASPH = .TRUE.
OUTCAR:
EATOM=-1046.9140
kinetic energy error for atom= 0.0008 (will be added to EATOM!!)WARNING: aliasing errors must be expected set NGX to 82 to avoid them
NGY is ok and might be reduce to 82
WARNING: aliasing errors must be expected set NGZ to 58 to avoid them
aliasing errors are usually negligible using standard VASP settings
and one can safely disregard these warnings PAW_PBE Al 04Jan2001 Error EDDDAV: Call to ZHEGV failed. Returncode = 31 1 32 :
energy of atom 2 EATOM= -53.5387
kinetic energy error for atom= 0.0002 (will be added to EATOM!!)
PAW_PBE O 08Apr2002 :
energy of atom 3 EATOM= -432.3788
kinetic energy error for atom= 0.0208 (will be added to EATOM!!)
PAW_PBE Yb 23Dec2003 :
energy of atom 4 EATOM=-6750.7873
kinetic energy error for atom= 0.0018 (will be added to EATOM!!)
Relevant answer
Answer
The issue you are experiencing—non-convergence and failure of ZHEGV—is likely due to the inclusion of Yb, which involves f-electron states that require careful treatment in VASP. The ZHEGV error indicates an eigenvalue solver problem, which often arises due to numerical instabilities in systems with strongly correlated electrons, like those in lanthanide elements.
Here are several steps to address this issue:
Yb has partially filled f-electrons, which can create strong correlations and cause convergence issues. You may need to adjust the U value:
If LDAUU = 3 (eV) for Yb is too small or inappropriate, the self-consistent field (SCF) calculation can become unstable. Test a range of U values, e.g., 4-7 eV, which is more typical for Yb.
Modify:
LDAUU = 3 0 0 6
Since you are using LDAUTYPE = 2 (Dudarev), ensure that Ueff = U - J is meaningful. You might set:
LDAUJ = 0 0 0 0
Yb's strongly correlated states often cause SCF instabilities. Increase the maximum number of SCF cycles (NELM) to ensure convergence:
NELM = 200
Reduce mixing parameters to stabilize the SCF cycle. Add or adjust:
AMIX = 0.1
BMIX = 0.01
Switch the electronic minimization algorithm (ALGO) to a more stable setting for difficult cases involving f-electrons. Try the conjugate gradient (ALGO = All) or the block Davidson (ALGO = Fast) solver:
ALGO = All
Proper initialization of MAGMOM is crucial for systems with partially filled f-orbitals. Instead of assigning 4.0 for Yb's magnetic moment (which could be unrealistic), try:
MAGMOM = 79*0.6 1*1.0
Start with a smaller or neutral moment for Yb (1.0 or 0.6), as improper initialization can hinder convergence.
High-precision settings may cause aliasing errors, especially with large systems and f-electrons. Temporarily lower PREC to Normal and adjust the plane wave cutoff slightly:
PREC = Normal
ENCUT = 450
Explicitly set the FFT grid dimensions (NGX, NGY, NGZ) to resolve aliasing warnings:
NGX = 82
NGY = 82
NGZ = 58
Since the calculation is already unstable, smaller ionic step sizes might help:
POTIM = 0.3
Verify that the pseudopotential for Yb (PAW_PBE Yb 23Dec2003) is suitable for systems requiring f-electron treatment. Consider using Yb_sv or a GW-ready pseudopotential if available.
If the SCF calculation fails after several iterations, restart from a pre-converged charge density and wavefunction:
ICHARG = 1 # Read from CHGCAR
LWAVE = .TRUE. # Write the wavefunction file
I hope this can help
  • asked a question related to Convergence
Question
1 answer
Dear all,
I have successfully simulated a Double-Gate (DG) structure using a simple drift-diffusion model with the following parameters:
  • MuN: 150
  • Gate Work Function: 5.03 eV
The simulation runs without any warnings or issues.
However, after introducing the autobbt model for Band-to-Band Tunneling (BBT), the simulation fails to converge, and I am encountering poor convergence. I am writing to ask if anyone can provide suggestions on how to improve the convergence or any settings that need to be adjusted when using this model?
Best regards
Relevant answer
Answer
I am still awaiting a response on ResearchGate and would greatly appreciate any insights you might share.
Best regards, Rekib
  • asked a question related to Convergence
Question
4 answers
Muñoz, Lucio, 2003.  “Stakeholders, Attitudes, and Sustainability: The Need for Attitude Convergence”, Sustainability Outlook, Warren Flint (PhD)(Ed), Issue No. 22, February, Washington DC, USA
Relevant answer
Answer
Thank you Mohamed for taking the time to comment.
Respectfully yours;
Lucio
  • asked a question related to Convergence
Question
7 answers
Evolutionary algorithm, convergence curve, iteration count, maximum function evaluations, minimization objective.
Relevant answer
Answer
Definitely use the number of evaluations if you can't guarantee that the algorithms consume the same number of evaluations per generation/iteration.
  • asked a question related to Convergence
Question
2 answers
I am doing master's in geotechnical engineering specially in pipe soil interaction. I am new in Abaqus and trying to do Abaqus modeling on pipe soil interaction in horizontal oblique direction. The pipe oblique angle is 10 degree in my recent model. I am pulling the soil in negative-z direction. I am using structured meshing using local seeding. Soil domain size is (4m*2m*1.225m). Steel pipe with 114.3 mm diameter. I am doing the meshing in inclined direction as my pipe is installed in 10 degree angle in the soil domain. Also, I am using general contact.
When I am running my problem it gives me some error and warning.
The error message:
Such as "Time increment required is less than the minimum specified"
"Too many attempts made for this increment"
Warning message:
"Convergence judged unlikely. Increment will be attempted again with a time increment of 2.44997e-04"
What does it means and how can I solve the problem? I have attached the necessary files here.
I need the your kind response which will be greatly appreciated.
Relevant answer
Answer
Chi Yang Thank you so much for your suggestion.
  • asked a question related to Convergence
Question
2 answers
I have designed and simulated a FinFET based biosensor for sensing biomolecules with high dielectric constant (k) i.e. k ranging from 2-10 with the help of Silvaco Atlas. The simulation of FinFET biosensor is converging and working fine when the cavity is filled with air i.e. when k=1. However, when the cavity is filled with high k biosensor molecules the simulation is not converging although we have adjusted the meshing and used electric field dependent mobility and transport models and other recombination and tunneling models for the simulation. We have used the Newton and Gummel methods to solve the models in the simulation. Can anyone give me his/her most valuable suggestions to resolve out the problem issue?
Relevant answer
Answer
Can you share the Silvaco code to develop tfet as a biosensor
  • asked a question related to Convergence
Question
2 answers
I am conducting phonon calculations for the CsPbI3 perovskite structure in quantum espresso. How can a convergence test be performed for phonons? Which parameter should be checked in the output file to ensure convergence? Do we need to verify the convergence of frequencies at specific q-points?
Relevant answer
Answer
Anuradha Chhillar Thank you for your answer but can you please explain a little bit about which parameter needs to be changed in the input file and correspondingly which parameters to check the convergence in the output file?
  • asked a question related to Convergence
Question
4 answers
When simulating the carbon dioxide reaction in water oil rock, I used a reaxff force field, but there was a warning at the beginning of the simulation. Later, due to too many warnings, I was unable to continue. May I ask where the problem lies
Relevant answer
Answer
Jyri Kimari Each component of my model was built in material studio and then assembled in lammps
  • asked a question related to Convergence
Question
1 answer
🔒SCI: Call for Papers-Advances in AI Techniques in Convergence ICT
Journal: CMC-Computers, Materials & Continua (SCI IF=2.0)
📅 Submission Deadline: 30 May 2025
🌟 Guest Editors:
Dr. Ji Su Park, Department of Computer Science Engineering, Jeonju University, Jeonju, 55069, Republic of Korea
Dr. Yan Li, Department of Electrical and Computer Engineering, Inha University, Incheon, 22212, Republic of Korea
🔍 Summary:
The recent advancements in smart devices, mobile networks, and computing technologies are ushering us into a new era of Convergence ICT. To enable these smart devices to provide intelligent services, machine learning techniques are essential for training powerful predictive models. A common approach involves collecting distributed user data to a central cloud for deep learning model training. However, transferring massive amounts of data to the cloud center can cause significant transmission pressure on the backbone network. Additionally, increasing concerns about data privacy and the enforcement of privacy protection laws make it impractical to transmit data from end devices to the cloud.
Despite these advancements, existing AI techniques face several limitations that require novel solutions to better comprehend and improve their potential for decision-making in various real-world applications. Key challenges for employing diverse AI techniques include network management, communication efficiency, client selection and scheduling, resource management, security and privacy concerns, incentive mechanisms, and service management and pricing. Addressing these challenges calls for various techniques, including but not limited to:
· Data augmentation
· Active learning
· Multi-task learning
· Knowledge distillation
· Model compression
· Game theory
· Trust and reputation systems
· Multi-objective optimization
· Reinforcement learning
· AI based algorithm/method in Convergence ICT
· Privacy and Security in Convergence ICT
· Data Analysis in Convergence ICT
Relevant answer
Answer
Manuscripts that meet the scope of this special issue can come to consult and enjoy a certain discount.
  • asked a question related to Convergence
Question
4 answers
Hi, we have problems finding a transition state for an enzyme in ORCA. The run seems to run without any errors and still converges. However, in the geometry convergence it says 'no' in the converged column for Max gradient and RMS gradient. What does this mean and how can we get a 'yes'?
This is our input file for the latest run for the deacylation reaction:
!B3LYP DEF2-TZVP D4 NEB-TS FREQ TightSCF TightOpt
%geom
MAXITER 10000
END
%SCF
MAXITER 10000
END
%maxcore 1000
%pal
nprocs 16 end
%NEB NEB_END_XYZFILE "products.xyz"
END
* XYZFILE -1 1 reactants.xyz
Relevant answer
Answer
Hey Rikke,
Sounds like you’re close, but ORCA’s being picky with your transition state search!
So, that “no” in the convergence column for Max gradient and RMS gradient means that ORCA's optimizer hasn’t reached the criteria needed to call the geometry fully converged. The Max gradient and RMS gradient are not quite where ORCA wants them to be to consider the transition state legit. Essentially, it’s telling you, "Hey, I'm not happy with this geometry yet."
I would have the following suggestions to help nudge it to a “yes”:
  1. Loosen the Convergence Criteria ORCA’s TightOpt setting is great for final geometries but a bit strict for TS searches, especially when they’re tough to converge (as they often are with enzymes). Try using Opt instead of TightOpt under !.
  2. Gradient and Displacement Tolerances If it still remains stubborn, you could try setting custom tolerances in the %geom section: plaintextCopy code%geom TolE 5e-6 TolRMSG 5e-4 TolMaxG 1e-3 MaxIter 500 endThese relax the energy, RMS gradient, and Max gradient tolerance values a bit, which might be all it needs to converge.
  3. Decrease the Max Number of Iterations If you are using MAXITER 10000, it seems pretty high— itmight actually slow things down, as ORCA can get bogged down in endless cycling around similar structures. Try bringing it down to something like MAXITER 300, which should be plenty for a tricky TS search without going overboard.
  4. Double-check Input Structures For tough TS searches, a very well-prepared initial structure would be highly important. Make sure your reactants.xyz and products.xyz are accurate and closely related to each other. If they’re too different, ORCA might have trouble finding a meaningful TS between them.
  5. Consider Using the Initial Guess from Another Method If you have another method (e.g., QM/MM or even a simplified smaller model) to get a rough TS guess, that can sometimes get ORCA closer to converging.
  6. Increase Maxcore if You’re Running Low on Memory Just in case memory’s an issue, try bumping %maxcore up a bit if you have the RAM available.
I hope that this resolves your issue!
Best,
Igor
  • asked a question related to Convergence
Question
3 answers
I am trying to do a simple conduction problem in COMSOL where a boundary heat source is applied at a interface of a baseplate. Heat flux is as the form: Q(T)=(a*T^3+b*T^2+c*T+1000)/~O(1e-5). now i tried taking a=b=c=0 then the solution converged and the it made sense but when a,b,c is non zero then it's not converging. I tried using smooth function and even tried using transient solver(using step function) it did not work. I would greatly appreciate if you can share your experience or thoughts for resolving this problem.
Relevant answer
Answer
Enter your question in ChatGPT ;)
Then you will have the following answer:
In COMSOL, convergence issues with nonlinear boundary conditions, like your temperature-dependent heat flux Q(T)=aT3+bT2+cT+100010−5Q(T) = \frac{a T^3 + b T^2 + c T + 1000}{10^{-5}}Q(T)=10−5aT3+bT2+cT+1000​, are common due to the high nonlinearity of the function, especially for high values of TTT. Here are some strategies that might help improve convergence:
1. Scaling the Heat Flux Expression
Since your denominator is on the order of 10−510^{-5}10−5, this makes the flux very large, leading to steep gradients and numerical instability. Try normalizing or scaling the function by a larger constant to reduce the overall magnitude of Q(T)Q(T)Q(T) and see if this helps in achieving convergence. After the problem converges, you can scale the solution back to get the actual heat flux.
2. Starting with Simpler Boundary Conditions (Continuation Method)
Start with a simpler form of your boundary condition and gradually introduce the nonlinear terms. For example:
  • Begin with Q(T)=100010−5Q(T) = \frac{1000}{10^{-5}}Q(T)=10−51000​ (i.e., with a=b=c=0a = b = c = 0a=b=c=0, as you did).
  • Once that converges, introduce cTc TcT, then bT2b T^2bT2, and finally aT3a T^3aT3.
  • This approach, known as the continuation method, helps the solver find an initial solution that it can gradually refine.
3. Use a Transient Study with Initial Temperature Guess
In cases with strong nonlinear dependencies on TTT, a transient solution can sometimes help. This is especially true if the system has large gradients or if the nonlinear boundary condition is very sensitive to TTT. Try running a transient study with a small time step and a reasonable initial guess for the temperature distribution.
  • You can use a time-dependent solver with a step function to gradually ramp up the boundary heat source.
  • This approach effectively reduces the initial stiffness of the problem and helps the solver find an accurate initial condition, which you can then use for the stationary study.
4. Adding Smoothing Functions
If you observe oscillations or sharp gradients in the boundary heat flux, consider adding a smoothstep function (or another smoothed approximation) to the heat flux expression. Smoothstep functions prevent the solver from having to handle abrupt changes that can disrupt convergence. In COMSOL, you can add smoothing functions like flc2hs(T, smoothing factor) to smooth out temperature gradients.
5. Solver Settings Adjustments
Fine-tuning solver settings can often be essential for these cases. Consider these options:
  • Nonlinear Solver Settings: Increase the Nonlinear Method damping factor to help manage the steep nonlinearities.
  • Update Frequency: Decrease the Jacobians update frequency to allow for more accurate convergence in each iteration.
  • Fine-tune Mesh: Ensure the mesh around the heat flux boundary is fine enough to capture rapid temperature variations without over-refining the entire domain.
6. Stabilization Techniques
COMSOL provides stabilization methods like Automatic stabilization or Isotropic diffusion. These techniques add a small amount of artificial diffusion to the problem, helping it stabilize. Be careful to keep this effect minimal, as it can alter the results slightly, but it often helps the solver find a converged solution in nonlinear problems.
Applying these strategies should enhance your chances of achieving convergence with your nonlinear boundary heat flux. Let me know if you need more specific guidance on implementing any of these in COMSOL!
This should provide your enough guidance to tackle your problem ;)
Best,
Igor
  • asked a question related to Convergence
Question
1 answer
I've set up an emcee EnsembleSampler() with 50 walkers, 500 iterations. However, looking at the resulting traces, I don't think my walkers are fully exploring the parameter space. The walkers don't converge around what the true value of the parameter is.
The prior I'm giving to whole parameters is uniform and the p0 distribution is a random uniform distribution. The reason I believe this is wrong is because it appears that these walkers are exploring all of the parameter space and for the majority of their iterations without converging to the parameter
Graphs below:
Relevant answer
Answer
Yes, walker positions can converge when using an ensemble sampler, such as the affine-invariant MCMC ensemble sampler (e.g., emcee). In this method, a group of "walkers" (or chains) explore the parameter space simultaneously. As the walkers move, they collectively sample the posterior distribution. Over time, if the sampling is efficient and the model parameters are well-behaved, the walker positions converge towards the true posterior distribution. Convergence is typically assessed through diagnostics like the Gelman-Rubin statistic or by visually inspecting trace plots.
  • asked a question related to Convergence
Question
7 answers
Hello Researchers,
Can anyone please answer, how to optimize the Nickel complex using gaussian 16 software. It was showing convergence error in Maximum displacement RMS displacement while optimizing the Ni complex. How to resolve this?
"Gradient too large for Newton-Raphson -- use scaled steepest descent instead.
Restarting incremental Fock formation.
Gradient too large for Newton-Raphson -- use scaled steepest descent instead.
Convergence failure."
below i have attached the required file.
With regards,
Maithra N.
Research Scholar
Relevant answer
Answer
You can advance the calculations by adding the keyword 'opt=tight'.
Note that this calculation requires high RAM. If you need a server to perform calculations, you can get help from the MolQube team. Their email address:
  • asked a question related to Convergence
Question
4 answers
I am solving a large system of nonlinear equations. The Jacobian for this system of equations is a block tridiagonal matrix. When solved using Newton's method, the equation residuals may keep oscillating around lower values. In this case I have found that a rank one correction to the Jacobian, i.e. the broyden method, converges more quickly. The problem is that the traditional broyden method of correcting the Jacobian destroys its sparse pattern. Is there a way to update the Jacobi's method while maintaining the (block) tridiagonal matrix?
Relevant answer
Answer
If no corrections are made to the Jacobian in each iteration of Newton's method, then the search direction will become no longer the descent direction of the residuals of the equation. While this method of not updating the Jacobian exists, it does not work for my system of nonlinear equations.
  • asked a question related to Convergence
Question
2 answers
Although Quantum Entanglement Phenomenon was coined by Schrodinger in 1935 but this phenomenon was described by Maharaj
Saheb Pandit Brahm Sankar Misra, M. A. (1861-1907) at least 25 years before Schrodinger contemplated this phenomenon. In His book Discourses on Radhasoami Faith, First Edition brought out in 1909, He writes: "It would not therefore be unjustifiable for us further to infer that the spirit -force, like the other forces of nature, partakes of the influences of its original source, and that whenever it converges and forms its focus, the conditions brought about are, to some extent, similar to those present in the original source, the similarity being complete when the converging lens or mirror does not introduce an element of obstruction. In the physical universe, such a complete likeness is very rarely met with".(Article 16-Spirit And Its Source)
Relevant answer
Answer
Yes, I am sure. Quantum Entanglement is regardless of distance between the particles.
  • asked a question related to Convergence
Question
4 answers
When one develops a numerical method (FDM, root finding...) for a certain problem solving, proof of convergence, consistency and stability is a necessary task. Who may explain the similarity (relations) and differences between order of convergence and rate of convergence?
Thanks!
Relevant answer
Answer
Hi,
A sequence ( x_n ) that converges to L is said to have order of convergence q ≥ 1 and rate of convergence μ if
lim n → ∞ |x_{n + 1} − L| / |x_n − L|^q = μ.
Best
  • asked a question related to Convergence
Question
2 answers
Dear all,
I have extracted SIF results based on XFEM analysis for a stationary crack in 6 contours, as depicted in the attached graph; however, it is unclear whether the SIF value has converged.
The question is which contour results are trustworthy?
Thanks in advance
Relevant answer
Answer
You should look for contours where the SIF values become stable ( don't change significantly from one contour to the next). If the SIF values stabilize after a certain contour, the results from these contours are generally considered trustworthy.
Note that: The outermost contours (contour 6) often include elements farther from the crack tip, where the stress field might be less accurate. These can sometimes show significant deviation, as observed with the top contour line in your graph. Therefore, they are typically less reliable. Also the innermost contours (Contour 1 or 2) might be too close to the crack tip and can be affected by the singularity, leading to less reliable results. Any way it's common practice to use results from Contour 3 to Contour 5, where the SIF values have stabilized.
you can know more about how to work with XFEM and fracture mechanics and how to interpret the results from this course case studies
  • asked a question related to Convergence
Question
5 answers
Despite multiple attempts, the calculation fails to converge. This version includes a reference to the attached input file, making it easier for others to diagnose the issue.
Relevant answer
Answer
Dear Maia
I am deeply grateful for your help. Additionally, I would like to ask if the surface in my input file corresponds to the (211) plane. Also, what considerations should I keep in mind if I substitute CH₄ onto the surface in different adsorption sites like ontop, bridge, and hollow during a vc-relax calculation and also for NEB calculation.
  • asked a question related to Convergence
Question
3 answers
Hello everyone,
I'm currently working on an scf and nscf calculation for a supercell and am experiencing some convergence issues. I've tried adjusting various parameters, but I'm still struggling to achieve convergence.
If anyone has encountered similar challenges or has any suggestions on how to resolve this, I would greatly appreciate your input. here i am sharing all input files and output files for your reference.
Thank you in advance for your help!
Best regards, allam vasundhara.
Relevant answer
Answer
Ok, I understood. I don't have much experience in doping calculations, but I have some suggestion you might try.
How many atoms you have to substitute? Let's say you wanted to dope other atom in Sb sites by 50%. You have 4 Sb atoms in your cell, then you just need to change 2 of them, and you don't need to make a super cell. You only have to describe all the atoms as if there weren't any symmetry, and put the new atoms where you want.
  • asked a question related to Convergence
Question
3 answers
In an ocean-continent convergent setting, after initiation of the descent of oceanic crust under the continental crust:
1. How deep would the oceanic crust sink before slab rollback occurs?
2. How much time does it take for slab rollback to begin?
Relevant answer
Answer
Thank you Dr. Borys Kapochkin for your answers. These are insightful on the subducting plate behaviour. To be honest I'm surprised myself that the question has garnered so much less attention. I was hoping someone might add something on slab rollback initiation.
  • asked a question related to Convergence
Question
2 answers
Hi everybody,
I tried launching a BLYP optimization with ORCA starting from a calculation that had already converged at the BP level, using the orbitals and their geometry as guesses.
I also tried launching the calculation by manually replacing the convergent geometry in the input file, but it didn't work. The message always appears that
ERROR (ORCA_MAIN): For parallel runs !!!
!!! ORCA has to be called with full pathname !!!
[file orca_tools/qcsys.cpp, line 41]:
Can you give me an example? Because what I found in the manual doesn't work.
Here's my input
! B3LYP 6-311G* OPT
! SlowConv
%PAL NPROCS 32
end
%scf Maxiter 5000
end
* xyz 0 2
O 6.52685 -0.73958 -0.60612
O 6.00262 -1.67364 1.36686
N 0.02656 1.02768 -0.14143
N -1.96580 -1.10331 0.21717
N -2.14235 2.92651 0.10135
N -4.01394 0.76086 0.44309
C 2.28855 0.42545 -0.42274
C 2.19580 1.88101 -0.46468
C 0.91718 -0.07010 -0.22669
C 3.54463 -0.36382 -0.56170
C 0.78607 2.20981 -0.28425
C 3.32043 2.84128 -0.65602
C 4.48542 -0.06213 0.59139
C 0.28815 3.45265 -0.25755
C -2.92922 -2.05161 0.38431
C -1.13332 3.80888 -0.07277
C 5.72390 -0.88460 0.47560
C -1.61130 5.10437 -0.05281
C -4.22648 -1.77583 0.55990
C -2.97758 5.01700 0.14249
C -3.26625 3.66749 0.23242
C -4.78734 -0.41009 0.59448
C -6.20792 -0.04567 0.78294
C -0.79409 6.34344 -0.21226
C -4.93426 1.82287 0.53553
C -6.28304 1.28839 0.74599
C -4.62309 3.12217 0.44428
C -7.40736 -0.93939 0.98445
C -3.96952 6.10751 0.24266
C -7.53241 2.09796 0.89398
C -3.64660 7.39609 0.15056
C 7.68363 -1.46287 -0.77870
C 0.43867 -1.47026 -0.11628
C -0.83713 -1.81563 0.07726
C 1.16544 -2.77232 -0.18274
C 0.23678 -3.78127 -0.01692
C -1.04183 -3.13945 0.14773
C -2.38149 -3.34113 0.34626
C -3.08246 -4.64855 0.48648
N 0.56372 -5.09275 -0.02589
C 1.86711 -5.45840 -0.20700
C 2.87912 -4.46116 -0.38749
C 2.50060 -3.10065 -0.37134
C 4.31844 -4.78149 -0.59510
O 4.74862 -6.06913 -0.61164
C 6.06101 -6.43909 -0.81471
C 6.43157 -6.29546 -2.28009
O 5.12041 -3.86953 -0.75075
C 2.17416 -6.91743 -0.21020
C -7.08726 -2.42226 0.99213
*
Thank you in advance
Relevant answer
Answer
try this input and run it different in full path name :
! B3LYP 6-311G NormalPrint Grid3 FinalGrid5 NOSOSCF
%pal nprocs 32 end
%scf
MaxIter 99999
end
%output
print[P_AtCharges_M] 1
print[P_AtCharges_L] 1
end #output
* xyz 0 2
O 6.52685 -0.73958 -0.60612
O 6.00262 -1.67364 1.36686
N 0.02656 1.02768 -0.14143
N -1.96580 -1.10331 0.21717
N -2.14235 2.92651 0.10135
N -4.01394 0.76086 0.44309
C 2.28855 0.42545 -0.42274
C 2.19580 1.88101 -0.46468
C 0.91718 -0.07010 -0.22669
C 3.54463 -0.36382 -0.56170
C 0.78607 2.20981 -0.28425
C 3.32043 2.84128 -0.65602
C 4.48542 -0.06213 0.59139
C 0.28815 3.45265 -0.25755
C -2.92922 -2.05161 0.38431
C -1.13332 3.80888 -0.07277
C 5.72390 -0.88460 0.47560
C -1.61130 5.10437 -0.05281
C -4.22648 -1.77583 0.55990
C -2.97758 5.01700 0.14249
C -3.26625 3.66749 0.23242
C -4.78734 -0.41009 0.59448
C -6.20792 -0.04567 0.78294
C -0.79409 6.34344 -0.21226
C -4.93426 1.82287 0.53553
C -6.28304 1.28839 0.74599
C -4.62309 3.12217 0.44428
C -7.40736 -0.93939 0.98445
C -3.96952 6.10751 0.24266
C -7.53241 2.09796 0.89398
C -3.64660 7.39609 0.15056
C 7.68363 -1.46287 -0.77870
C 0.43867 -1.47026 -0.11628
C -0.83713 -1.81563 0.07726
C 1.16544 -2.77232 -0.18274
C 0.23678 -3.78127 -0.01692
C -1.04183 -3.13945 0.14773
C -2.38149 -3.34113 0.34626
C -3.08246 -4.64855 0.48648
N 0.56372 -5.09275 -0.02589
C 1.86711 -5.45840 -0.20700
C 2.87912 -4.46116 -0.38749
C 2.50060 -3.10065 -0.37134
C 4.31844 -4.78149 -0.59510
O 4.74862 -6.06913 -0.61164
C 6.06101 -6.43909 -0.81471
C 6.43157 -6.29546 -2.28009
O 5.12041 -3.86953 -0.75075
C 2.17416 -6.91743 -0.21020
C -7.08726 -2.42226 0.99213
*
  • asked a question related to Convergence
Question
10 answers
Hi!
I would like to know if someone has a strategy to make a nanosystem converge. I am simulating two nanosystems, NiO and Cu2O. In the case of the NiO, I am using a PBEsol PAW pseudopotential with the Hubbard parameter I calculated before. The nanosystem does not converge when I use all the parameters I have used in a bulk system in a surface system. The QE input file looks like this:
&system
ibrav = 0,
nat = 8,
ntyp = 2,
ecutrho = 400
ecutwfc = 50
nspin = 2,
tot_magnetization = 0.0
occupations = 'smearing'
smearing = 'cold'
degauss = $degauss
starting_magnetization(1) = 2.7777777778d-01
starting_magnetization(2) = 2.7777777778d-01
/
&electrons
mixing_beta = $beta
electron_maxstep = 80
mixing_mode = 'local-TF'
mixing_ndim = 10
diagonalization = 'cg'
...
K_POINTS {automatic}
15 15 5 0 0 0
...
The beta parameter ranges from 0.1 to 0.4, and the degauss is 1.4699723600d-02 ( I have tried 0.018 to 0.022). I use these parameters based on internet research.
In the case of the Cu2O system, I want to simulate the (111) and (100) surfaces. In the case of the (111) surface, the energy converges, but using the same parameters, the simulation does not converge on the (100) surface.
Could anyone give me an insight into how to solve this?
Thank you a lot.
Relevant answer
Ricardo Tadeu Maia Thank you a lot. Your suggestions make the simulation converge. I will use this parameter to simulate an heterojunction. Which parameter do you suggest modifying to create a faster simulation?
  • asked a question related to Convergence
Question
2 answers
I am designing a lens using quasi-periodic structures using CST Studio. When I change some parameters like diameters, periodicity, etc, the simulation does not work (just for certain values). I start the simulation it reaches 37%, the state of the simulation is: "Creating Tetrahedral Mesh: Surface meshing". And it can be like that for hours and there is no improvement.
I think the meshing does not converge. How could I solve it to see my results without these problems? The structure is relatively simple and it should not take that much to be simulated.
Relevant answer
Answer
It seems that your mesh is very big. Reduce the mesh and try it please.
  • asked a question related to Convergence
Question
4 answers
Fisher studied if there is an out-of-equilibrium process that rapidly converges to some equilibrium points. He claims that Hahn process has a Lyapounof function and therefore convergent to an equilibrium. How can we understand Fisher's result with Saari and Simon (1978) Effective price mechanisms, Econometrica 46(5), 1097-1125, which claims there is no effective method of calculation that leads to an equilibrium?
Relevant answer
Dear Yoshinori,
I apologize for the delay in responding to your generous comments on my previously published articles. I did not have enough time until now. I answer you now your interesting question.
Saari and Simon's criticisms focus on the adjustment processes known as Walrasian tâtonnement, where 1) there is no exchange, production, or consumption activities during disequilibrium, and 2) prices are adjusted according to the law of supply and demand or Newton's iterative process, explained as if they result from perfectly competitive mechanisms where a Walrasian auctioneer sets the prices. In these cases, the stability results depend on the shape of the excess market demand functions for each commodity. According to the SMD theorem, this presents a significant problem and a huge limitation for such stability results.
In contrast, the Hahn and Fisher adjustment processes are different: 1) they are not Walrasian tâtonnement processes (Hahn's process involves exchanges, and Fisher includes also consumption and production activities), and 2) firms or individuals set prices through more or less monopolistic competitive processes. Most importantly, their stability results do not depend on the shape of the excess market demand functions for each commodity. Therefore, they are not constrained by the SMD theorem.
It is a shame these adjustment processes are not as well known or taught in our economics courses.
Best regards,
Martin
  • asked a question related to Convergence
Question
11 answers
Hello.
Currently I'm doing 300 ns MD simulations in Amber to look for differences between a wild type protein and mutated ones. In detail I have one wild type dimer and 7 mutated dimers. So I begin to simulate, obtaining 4 replicas, so 4 trajectories (with the same parameters and a casual semen for the velocities) for each dimer.
I also did 4 replicas for each monomer (wt, Mut1, Mut2 ...Mut 7) first. For example here I plotted the RMSDs vs frames for the wild type monomer (wt), for each replica. It looks like that the results are quite different and only 1 RMSD (blue) shows convergence. Can it be a problem of the protocol I used or do I have to choose for each protein, the Replica whose RMSD reach convergence (the blue one in this case), in order to study then differences between the proteins?
Excuse me if I have gaps in this field, but I'm rather new.
Thanks for the help
Relevant answer
Answer
It is generally accepted that the RMSD fluctuation ranging between 1-3 Angstrom is normal and accepted. So, for most of the simulations, this criterion was met.
Building H-atoms in tleap does not have anything to do with it.
Moreover, what atoms were used for RMSD calculation? Ca or backbone or whole heavy atoms?
  • asked a question related to Convergence
Question
4 answers
Hola a todos,
Me gustaría realizar una consulta con relación al mensaje de advertencia que se muestra en la imagen anexada.
Es un mensaje que aparece al inicializar la solución de una simulación en Ansys Fluent.
Pues, cuando inicializo la solución con 11 o mas iteraciones, el mensaje de advertencia desaparece, sin embargo, mi solución no llega a una convergencia. (Esto sucede específicamente para un mallado con un grado de refinamiento relativamente alto.
Por otro lado, cuando corro la simulación ignorando el mensaje de advertencia, mi solución converge.
Entonces, debería ignorar el mensaje de advertencia?
Relevant answer
Answer
Hi
I think, You have manually raised the convergence tolerance to ten to the power of minus 6 when it was not needed and the problem probably converged to ten to the power of minus three or four.
best
  • asked a question related to Convergence
Question
12 answers
In our project
https://www.researchgate.net/project/Blockchain-Technology-and-Applications we are working on blockchain technology and its applicatitions. The Internet of Things (IoT), Artificial Intelligence (AI), and Blockchain have tremendous potential when integrated for specific solutions. How IoT, AI, and Blockchain will converge and revolutionize business?
Relevant answer
Answer
IoT, AI, and Blockchain technologies, as well as other technologies categorized in the sphere of Industry 4.0/5.0 and ICT are successively changing more and more aspects of business activities conducted by companies, enterprises and commercially functioning financial institutions. In addition, the aforementioned technologies are also revolutionizing the functioning of other types of entities, most notably public institutions. In recent years, the particularly fast-growing technology of artificial intelligence, including mainly generative artificial intelligence, is being implemented into business entities in order to improve a specific type, a specific sphere of business activity. Business entities are rapidly implementing new technologies into their business operations, including web applications, advanced information systems, intelligent chatbots, intelligent agents technology, etc. equipped with generative artificial intelligence technology seeing it as increasing the efficiency of their business operations, streamlining processes, reducing operating costs. Unfortunately, these are not only positive aspects alone, as they may involve job cuts. Besides, the various positive and negative aspects of the development of artificial intelligence technology and its applications are much, much more. I am conducting research on this issue.
I described the key issues of opportunities and threats to the development of artificial intelligence technology in my article below:
OPPORTUNITIES AND THREATS TO THE DEVELOPMENT OF ARTIFICIAL INTELLIGENCE APPLICATIONS AND THE NEED FOR NORMATIVE REGULATION OF THIS DEVELOPMENT
Please write what you think in this issue? Do you see rather threats or opportunities associated with the development of artificial intelligence technology?
What is your opinion on this issue?
I invite you to familiarize yourself with the issues described in the article given above and to scientific cooperation in this issue.
I invite you to scientific cooperation in this problematic.
Please write what you think in this problematic?
The above text is entirely my own work written by me on the basis of my research.
In writing this text I did not use other sources or automatic text generation systems.
Copyright by Dariusz Prokopowicz
  • asked a question related to Convergence
Question
2 answers
Dear respected scientific community. I am a beginner in using the Gaussian application and I desperately need your help and advice with my job submission.
I am working on opt+freq on my molecule using Gaussian 9, however I have failed multiple times on several attempts. I have tried changing my keywords (scf=qc, scf=xqc) etc. but it still doesn't converge. Can you give me some advice/guide on how should I continue and succeed in my job? I truly am at my wits end right now.
The error is:
RdWrOT: IFlag = 2 Data mismatch
MaxStp (old) = 3000 MaxStp (new) = 570
MaxJob (old) = 1 MaxJob (new) = 1
RdWrOT: Data mismatch on MaxStp/MaxJob
Error termination via Lnk1e in /app/gaussian/g09/l103.exe
My keywords are:
# opt=(cartesian,calcfc,maxcycles=3000,restart) freq b3lyp/6-311++g(d,
p) nosymm scf=(maxcycle=3000) scf=(conver=9)
Please help!
Relevant answer
Answer
Those errors are related to the usage of the "restart" option in the opt route. Restart "copy" all the old opt parameters from the chk file, the error is due to a mismatch between the old route and the new one.
To solve those errors just remove the restart option and set geom=check to read the geometry from the chk file but not the opt options.
Also, the optimization in cartesian coordinates it is deprecable as it is really slow compared to general internal coordinates (GIC), then the calcfc keyword slows down the calculation by not bringing enough benefit to justify it, at least if you don't need force constants of the first point.
Other things, is there a real need to set scf convergence values other than the default ones? Why are you not using symmetry constraints? You should check if your system belongs to a point group or not, if the answer is yes you must remove nosymm (especially to obtain reliable frequencies) and symmetrize the molecule prior to the optimization with software like gaussview or avogadro. In addition, for a frequency calculation, it is desirable to set "very tight" as the convergence criterion of the optimization in order to be more sure of converging to a minimum so as not to end up with imaginary frequencies after. Finally, 3000 cycles both for the opt and the scf are overkill, if your structure does not converge after 500 steps you should better check your system and probably try a different level of theory.
You colud try
#p b3lyp/6-311++g(d,
p) scf=(xqc, MaxConventionalCycles=60) geom=check opt=(maxcycles=300, verytight) freq
  • asked a question related to Convergence
Question
5 answers
Hi all,
This is a straightforward model and I have no idea why it is not converging. In the model, I applied a concentrated load on one end of the column with the other end pinned. I had run this in the past with no problem at all, but this time I ran out of ideas why it is not running...
Many thanks guys!
Regards,
Heng
Relevant answer
Answer
I realised some loads just don't want to converge no matter how small the initial increment is. This is so strange!
  • asked a question related to Convergence
Question
4 answers
1a)"The epicanthic fold produces the eye shape characteristic of persons from central and eastern Asia; it is also seen in some Native American peoples and occasionally in Europeans (e.g., Scandinavians and Poles)"(Britannica 2023).
Britannica, The Editors of Encyclopaedia. "epicanthic fold". Encyclopedia Britannica, 5 May. 2023, https://www.britannica.com/science/epicanthic-fold. Accessed 27 May 2024.
4) "A small minority of people in northern Sweden and Finland, known as Sami, have some connections with Siberian people.
I don’t think they look Chinese at all. Chinese people have their own unique phenotypes. If you are talking about their eyes, there is a connection with Siberian people, who have eyes that people usually will associate with looking East Asian. Most Scandinavians have eyes that are similar to the rest of Europe.
Convergent evolution is another factor, especially for people living in colder climates. It’s common" (Sam Jones). https://www.quora.com/Why-many-people-in-Scandinavia-look-Asian-Chinese
Relevant answer
Answer
Well according to the writer the scandivians looking like the europians could be a privilage for them
  • asked a question related to Convergence
Question
1 answer
Dears,
while running nonlinear analysis for 3story building
this message appear when analysis complete
CONVERGENCE FAILURE OCCURED IN CASE: K6 AT TIME STEP 422, RELATIVE ERROR = 353.925815?
how i can solve this issue
Relevant answer
Answer
Dear Hesham
Nice question, but maybe for nonlinear time (or response) history analysis you do not need to overcome the convergence failure, at all; in brief the reason is the fact that in these analyses the inaccuracy is under the influence of both time step size and the nonlinearity iterations, and these two sources are mostly independent. Have a look at "Soroushian, A. and Wriggers, P., 2023. Elimination of the stops because of failure of nonlinear solutions in nonlinear seismic time history analysis. Journal of Vibration Engineering & Technologies, 11(6), pp.2831-2849", and if needed be in contact. I need to leave now. Have a very nice day.
  • asked a question related to Convergence
Question
3 answers
To whom it may concern,
I'm working on optimizing the molecule using gaussian 16. However, it is suffering from the problem of convergence failure. I attempted optimization several times, but failed to meet the convergence criteria. I tried scf=qc, scf=(maxcycle=1024), and opt=calcfc, but it doesn't converge.
Should I keep restarting and continuing the calculation? Please give me some advice on how to succeed in my job.
Best reagrads
-------------------------------------------------------------------------------------
# opt=calcfc freq td=(triplets,root=1) b3lyp/gen scrf=(cpcm,solvent=to
luene) nosymm guess=(read,save) scf=(qc,maxcycle=1024) geom=check pseu
do=read
-------------------------------------------------------------------------------------
Item Value Threshold Converged?
Maximum Force 0.032489 0.000450 NO
RMS Force 0.003501 0.000300 NO
Maximum Displacement 0.006599 0.001800 NO
RMS Displacement 0.001413 0.001200 NO
Predicted change in Energy=-3.509272D-03
GradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGradGrad
Relevant answer
Answer
Yoon Junho : Hey, have you tried saving an input from the last optimization step and resubmitting the job?
Also, if your initial structure is unsuitable, you have this convergence failure issue. Maybe, you can modify the initial structure and then try it again.
I hope this gives you some hints.
  • asked a question related to Convergence
Question
1 answer
  1. Is Public Health/ Community Medicine similar in the UAE?
  2. What are the domains of Public Health / Community Medicine?
  3. What are the different diverging branches converging in this mainstream?
  4. What are the top Public Health important topics over there?
Relevant answer
Answer
  • asked a question related to Convergence
Question
5 answers
Dear Colleagues,
I am a beginner in the field of computational chemistry, and my interests are primarily focused on the calculation of magnetic states and exchange interactions for 3d- and 4f-block metal coordination compounds. In particular, I am interested in the broken-symmetry DFT calculation for a binuclear Gd(III) complex using ORCA 5 software. The overall procedure seems clear to me, yet the following issue arises.
First of all, I generate a "fragmented" initial guess orbitals via separate DFT calculations for gadolinium centers and organic ligands, and then combine them together through the orga_mergefrag routine. Nevertheless, when I use this guess for the further DFT calculation of the overall molecule (no matter, HS or BS state), the SCF convergence exhibits a sudden increase in energy (ca. 0.0006 Eh) after resetting KDIIS, and eventually, the SCF converges to a higher energy than one could expect.
I use DKH approximation with the appropriate basis sets (DKH-DEF2-SVP and SARC2-DKH-QZVP for organic ligands and Gd, respectively) and PBE0 functional. Additionally, the RIJ-COSX approximation was implied.
Which set of ORCA parameters would be appropriate in my case to achieve a stable and reliable SCF convergence for binuclear gadolinium complexes? Perhaps I should use !SlowSCF or !defgrid3 instructions?
Relevant answer
How you achieve that depends in too many factors: computing time available, hardware involved, OS involved, even the point at the universe where you are located. Try by example, to run your calculation using Jaguar and an octocore Mac Pro ("trash can") model as regerence or standard. If you have an AppleSeed cluster, that time will be decresed following the Moore laws. If you have a Beowulf cluster, that time will be increased or viceversa. Hope this long reasoning could help you!!!
  • asked a question related to Convergence
Question
3 answers
I'm running MD calculations in VASP for pi-stacked dimer (triphenylene) and I constrained the internal coordinates of individual monomers using ICONST file.
The calculations always stop after one ionic step due to Error: SHAKE algorithm did not converge! Error too large, I have to terminate this calculation! Can anyone give me guidance on which parameters I can change to minimize this error.
the error file is attached for your reference.
Thank you in advance!
Relevant answer
Answer
I also met this question, I dont know what to do
  • asked a question related to Convergence
Question
2 answers
Hi all,
I am new to the computational suite"MolPro" and I am trying to do the Electronic energy calculation for a small system. Following is my Input data:
memory,512,m
gprint,civector
geometry={angstrom
N 1.05599600 0.00108100 -0.52977300
C 0.05339200 0.93376500 0.05304600
O -1.50718000 -0.89910800 -0.04347600
C -1.31540500 0.28119000 0.08812600
H 0.33499300 1.21449300 1.07108200
H 0.01128700 1.81919800 -0.58219500
O 1.75463500 -0.51564600 0.30622800
H -2.14581200 0.98704200 0.27047200
}
basis=minao
uhf
basis=cc-pvtz
uhf
basis=avtz-f12
uhf
uccsd(t)-f12a,gem_beta=0.9
---
The output data I obtained shows no convergence and following error:
UHF orbitals should normally not be used.
The use of UHF orbitals may be forced with one of the following directives:
ORBITAL, [RECORD,] TYPE=UHF ! (use UHF natural orbitals)
ORBITAL, [RECORD,] TYPE=NATURAL ! (use UHF natural orbitals)
ORBITAL, [RECORD,] TYPE=ALPHA ! (use UHF alpha-spin orbitals)
ORBITAL, [RECORD,] TYPE=BETA ! (use UHF beta-spin orbitals)
Note that in any case only a single set of orbitals will be used.
? Error
? Illegal orbital type
? The problem occurs in ciorth
I would be very thankful, if anyone of you could help me to find the cause of this error and how it can be removed.
Regards
Qian
Relevant answer
Answer
Hi Qian Zhao,
In Molpro unrestricted couple-cluster method can be run only with RHF reference wavefunction, UHF won't work. (In Molpro RHF means the restrected-open-shell HF). As a rule of thumb: with larger basis set (avtz, avqz...) use UCCSD(T)-F12b, however for smaller one (avdz) use the UCCSD(T)-F12a method.
I do not understand why you need the keyword for UCCSD(T)-F12: gem_beta=0.9...The standard UCCSD(T)-F12 method works pretty well for most of the cases.
  • asked a question related to Convergence
Question
4 answers
Hello. I was trying to simulate the hydrated Nickel cation [Ni(H2O)6]2+ and my calculation setup is not working.
For that, I used the aug-cc-pVDZ basis sets for H and O; and Lanl2DZ for Ni. Attached are my code and two figures.
Relevant answer
Answer
In addition to mentioning multiplicity 3, your basis set for Nickel is incomplete. You used LANL2DZ for Ni but didn't mention the pseudo-potential as well as pseudo=read.
  • asked a question related to Convergence
Question
10 answers
There is a sealing with a rubber core and a polymer shell.
The sealing is positioned into a groove and then is subjected to pressure from a one side.
I've built a 2D model with plain strain elements and set two steps:
Step 1 - Pushing into the groove (everything is okay, no problems).
Step 2 - Apply the pressure and got convergence problems.
I tried
1) Various mesh size, and ALE. Conclusion: Finer the mesh --> earlier getting no convergence
2) NLGEOM is off. Get convergence, but I have doubts regarding results and accuracy.
3) To play with Poisson's ratio. Initially for the rubber core I input nu=0.45 and get no convergence. With nu=0.49 no problems.
4) To use Implicit and even Explicit solvers. Same thing.
5) Also tried full and reduced integration, linear and quadratic plane strain elements.
6) I have kinda ideal plasticity for the polymer shell and remain only elastic properties, but results are the same.
7) Of course I tried to reduce the time step up to 1e-12 and use more iterations for the increments and use solver stabilization.
Do you have any ideas to get convergence with NLGEOM to achieve accurate results? I would be really really appreciated.
Inp. file is attached.
Relevant answer
Answer
Hamed Ebrahimi thank you, I will try
  • asked a question related to Convergence
Question
1 answer
I am optimizing crystal structure using quantum atk.In the output file it shows "Warning: The calculation did not converge to the requested tolerance!".Could anyone help me to solve the issue?I am attaching the input and log files here
Thank you
Relevant answer
Answer
Aiswarya Chandran Increasing the number of steps probably solve the problem.
  • asked a question related to Convergence
Question
3 answers
if the standard deviation is less than 10-20% of the mean value, the data could be considered relatively convergent around the mean. is that correct? , i need supporting papers
Relevant answer
Answer
Convergence occurs when the standard deviation value is smaller. It tells that the data points are much closer to the mean of the data set.
  • asked a question related to Convergence
Question
3 answers
does increasing or decreasing size of supercells affect these in DFT calculation?
Relevant answer
Answer
Usually, if you increase the K-point mesh the calculation becomes more accurate but becomes more and more expensive. The same is true for cut-off energy. One should test and converge the K-point and cut-off energy with respect to the total energy of the system.
The size of the supercell depends on the user's choice of what kind of cell dimension with which the user wants to start the calculation. In the periodic boundary condition anyway, the periodicity will be maintained according to Bloch's formula. A large supercell with a smaller K-point calculation is equivalent to a small supercell with a large K-point calculation.
  • asked a question related to Convergence
Question
2 answers
Repeated error test failures. May have reached a singularity.
Time: 0.1000003331444892 s.
Last time step is not converged.
Relevant answer
There are many possibilities for the errors you have got. I am mentioning a few of them below. Hope it helps.
1) When there are not enough Governing equations to solve for the number of dependent variables you have set.
2) When there are not enough Boundary conditions for the given problem.
3) When some constraint / Physics is missing in the Problem.
4) You might have used an operator that directly implies '0' as the coefficient of dependent variables in one of the Governing equations, thus recheck all the operators and make sure all of them are used correctly.
There are always some things we unconsciously assume ourselves while solving problems and we might have missed giving that information to Simulation software / Comsol. Thus, you might have to look at it again in detail.
  • asked a question related to Convergence
Question
1 answer
I have been working on calculation of surface energy for spinel compounds but its not converging, can anyone help me with hint on what parameters I can adjust to improve the SCF calculation and relaxation of the surface energy calculation of spinel oxides using DFT.
Relevant answer
Answer
If you're encountering convergence issues in the calculation of surface energy for spinel compounds using density functional theory (DFT), here are some parameters and strategies you can adjust to improve convergence:
K-Point Sampling: Ensure that you have a sufficiently dense k-point mesh for Brillouin zone integration, especially for surface calculations. Increasing the k-point sampling density can lead to better convergence.
Plane Wave Cutoff Energy (ECUT): Increase the plane wave cutoff energy to include more basis functions in the expansion of wavefunctions. A higher cutoff energy can improve the accuracy of the calculation and aid convergence.
Electronic Smearing: Implement an appropriate electronic smearing method, such as Fermi-Dirac or Gaussian smearing, to distribute electronic occupations smoothly. This can help reduce numerical noise and improve convergence, particularly for metallic systems.
Pseudopotentials: Ensure that you are using high-quality, well-parametrized pseudopotentials tailored for the elements present in your spinel compounds. Poorly chosen pseudopotentials can lead to convergence issues.
SCF Convergence Criteria: Tighten the convergence criteria for self-consistent field (SCF) iterations, such as the energy change or density change tolerance. This forces the calculation to reach a more precise solution, although it may increase computational cost.
Geometry Optimization: Perform geometry optimization to relax atomic positions and lattice parameters, especially for surface calculations. Relaxed geometries can lead to a more stable electronic structure and improved convergence.
Spin Polarization: Consider the spin polarization effects, particularly if your spinel compounds contain magnetic ions. Properly treating spin polarization can significantly impact convergence behavior.
Symmetry Considerations: Exploit symmetry whenever possible to reduce computational cost and improve convergence. Symmetry operations can simplify the calculation and aid convergence.
DFT Functional: Verify that you are using an appropriate exchange-correlation functional for your system. Some functionals may perform better for specific types of materials or properties.
By adjusting these parameters and employing appropriate computational strategies, you should be able to improve the convergence of your SCF calculations for the surface energy of spinel oxides using DFT.
  • asked a question related to Convergence
Question
2 answers
This is a code block from nutWallFunction library in OpenFOAM where in, effective kinematic viscosity ($\nut_w$) at the wall is calculated using resolved field(in case of LES)/ mean field(in case of RANS) and $y^+_p$ (wall normal distance of the first cell center). this allows to set a new viscosity value as boundary condition at the wall using log law. Considering the first cell center is in the logarithmic layer of the universal velocity profile.
Now, in this code block of member function defined as nutUWallFunctionFvPatchScalarField::calcYPlus()
There has been iterations done for the yPlus value to reach convergence with maximum of 10 iterations. Why are these iterations needed? and why is the maximum number of iterations 10. I have given a reference of the code below;
tmp<scalarField> nutUWallFunctionFvPatchScalarField::calcYPlus
(
const scalarField& magUp
) const
{
const label patchi = patch().index();
const turbulenceModel& turbModel = db().lookupObject<turbulenceModel>
(
IOobject::groupName
(
turbulenceModel::propertiesName,
internalField().group()
)
);
const scalarField& y = turbModel.y()[patchi];
const tmp<scalarField> tnuw = turbModel.nu(patchi);
const scalarField& nuw = tnuw();
tmp<scalarField> tyPlus(new scalarField(patch().size(), 0.0));
scalarField& yPlus = tyPlus.ref();
forAll(yPlus, facei)
{
scalar kappaRe = kappa_*magUp[facei]*y[facei]/nuw[facei];
scalar yp = yPlusLam_;
scalar ryPlusLam = 1.0/yp;
int iter = 0;
scalar yPlusLast = 0.0;
do
{
yPlusLast = yp;
yp = (kappaRe + yp)/(1.0 + log(E_*yp));
} while (mag(ryPlusLam*(yp - yPlusLast)) > 0.01 && ++iter < 10 );
yPlus[facei] = max(0.0, yp);
}
return tyPlus;
}
My doubt is concerning the do-while loop at the end for yPlus iteration.
Relevant answer
Answer
CFD softwares are based on numerical methods or techniques to predict the fluid behavior for various conditions e.g. LES and RANS turbulence modelling etc. Unlike exact solutions , the numerical methods involve approximations of the governing fluid parameters which cannot be evaluated at once and thus need iterative computational solvers.
During this process several types of errors are introduced while approximating variable property e.g round off errors ( machine precision) , truncation errors depending on the type of numerical scheme used.
However , according to the nature of fluid and it's interaction with surrounding environment , ( in your e.g yplus wall function which is measure of the fluid friction resistance near wall ) the solutions obtained through numerical schemes present a significant source of error which can interpret the fluid behavior in entirely different manner.
Therefore, the solution is often tested by repeating the process using better approximations and schemes with a focus to obtain the exactness of parameter value leading to iterations.
During iteration process , the error can amplify or reduce ( which is indicative of the stability of solution ) depending on boundary conditions used to obtain solution. So, often an error tolerance is introduced as condition in numerical algorithm to make the solution more meaningful and realistic which closely approximates the fluid behavior. In your case wall shear stress is being approximated using wall units in logarithmic boundary layer.
Once that condition is satisfied, the process stops and proceeds further by evaluating the next dependent variable and so on until complete solution is obtained.
  • asked a question related to Convergence
Question
2 answers
I'm trying to simulate the complex [V(H2O)6]3+ using Guassian, but the calculation does not converge.
Relevant answer
Answer
This is a convergence issue which can be due to a variety of reasons. My advice is to reformulate your z-matrix (avoid Cartesian coords in possible) so that the starting geometry has the highest possible symmetry, i.e. belongs to a point group with the largest number of symmetry elements (which is probably Th or -worse- D2h). Second, start with a simple basis set (def2svp) and increase its complexity only if needed. Third, try different convergence algorithms (for example a slower quadratic one, qc in Gaussian).
Finally, and maybe most importantly, there is already at least a paper on this topic, dealing exactly [V(OH2)6]3+. Give it a glance:
  • asked a question related to Convergence
Question
5 answers
Hello,
I have written a simple GA for my specific problem. you can see <best cost-iteration> graph in the appendix. by this graph, can you tell if there is any kind of problem with code? like premature convergence or getting stuck into the local optimum. can you say something to modify my parameters or put some links to see? I think my algorithm does not do well. definitely it does not do well. it converges to final value in 5 iteration. I expect it to do something more in the next 45 iterations. But it is constant.
Relevant answer
Also, you can find some experiments regarding your question in the following critical review.
  • asked a question related to Convergence
Question
6 answers
I am conducting a sequential heat transfer-stress analysis for a composite wall consisting of steel plates and a concrete core, similar to concrete-filled tubes or CFTs. My analysis involves heating the wall from one of its faces using a heat transfer analysis, which runs smoothly. However, when I perform the stress analysis by inputting the results from the previous analysis, the program fails to converge after a certain amount of computation time. This is because the steel expands more than the concrete core, leading to interaction problems in the program. This issue does not occur when the temperature is applied simultaneously on all faces. Due to the deformations resulting from being exposed on only one face, the core penetrates the steel plates. How can I prevent this from happening, disregarding the fact that I already have a hard contact between both surfaces?
Relevant answer
Answer
Denis Benasciutti That only applies to steel bars in reinforced concrete; in this type of structure, the shear load at the interface is transmitted through friction, which is somewhat lesser, and through shear studs. Additionally, I need the plates to detach from the concrete when they buckle, so I cannot perform an analysis with rigid node-to-node contact, which forces me to use surface-to-surface or general contact.
  • asked a question related to Convergence
Question
1 answer
Hi,
I am a begineer in DFT calculations and I need to characterize an alternating co-polymer.
I would like to know if you have some suggestions or additions on how to achieve this. I have just optimized the two monomer structures and I've gotten some ideas to continue:
1) looking to the convergence of partial charges as the lengthsize of the polymer increases.
2) Connect both optimized structures and generate the dihedral energy profile adn transtition states through SCAN.
Thank you
Relevant answer
Answer
The basic idea of ​​this theory is to take the electron density of the ground state ρ (r) as the main variable, and write any other magnitude as a function of it. This theory is based on a variational principle. which requires the total energy to be a single density functional, and that this energy is minimal for the density of the ground state. The best procedure for performing the DFT is Kohn-Sham, they treated the N-body problem using the single-particle Schrõdinger equations called the Kohn-Sham equations. Solving these equations leads normally to the energy E(ρ) and the densityρ (r), of the ground state.The functional E (ρ) contains a non-classical contribution, called the exchange and correlation energy Exc (ρ) and its derivative by relation to ρ (r) which represents the exchange and correlation potential Vxc(ρ). The formalism of DFT is based on the Hohenberg - Kohn theorems. First, Hohenberg and Kohn showed that the total energy of an electron gas in the presence of an external potential, created by the nuclei is a unique functional of electron density ρ (r): E = E[ρ(r) ], Second, they showed that the minimum value of this functional is the exact energy of the ground state and that the density which leads to this energy is the exact density of the ground state. The other properties of the ground state are also functional of this density: E(ρ0) = min E(ρ ). ρ0 : The density of the ground state.
The functional of the total energy of the ground state is written as follows: E[ρ(r)]= F[ρ(r)] + ∫ VXC (r) ρ (r) d3 r. The functional F [ρ (r)] is universal for any system with several electrons. If this functional is known, then it will be relatively easy to use the variational principle. To determine the total energy and electron density of the ground state for a given external potential. Unfortunately, the Hohenberg - Kohn theorem gives no indication of the form of F [ρ (r)].
  • asked a question related to Convergence
Question
1 answer
In the paper [Stinchcombe and White,1990, APPROXIMATING AND LEARNING UNKNOWN MAPPINGS USING MULTILAYER FEEDFORWARD NETWORKS WITH BOUNDED WEIGHTS]
Theorem 2.8:
If $G$ is super-analytic (analytic but is not polynomial) at $a$ with convergence radius $gamma$, ${G(x+b): |b| \le 1}$ is uniformly dense on compact subsets of $(-gamma, gamma)$ in $span({G^(k)|(-gamma, gamma): k > 0))$ where $G ^(k)$ is the $k$-th derivative of $G$.
If in addition $sp({G(k) |(-gamma, gamma): k >0)) = C(R)|(-r, r)$ then.....
The proof is given in the paper with a differential perspective:
Let $K$ be a compact subset of (-r, r) and let $epsilon > 0$,
$|(G^(k-1)(x+h)-G^(k-1)(x) )/h - G^(k)(x) | <epsilon$ .
in a compact subset of (-r+h,r-h). When h is small enough.
A Question is here, I think the proof may have a little error:
$|(G^(k-1)(x+h)-G^(k-1)(x) )/h - G^(k)(x) | <epsilon$
in a compact subset of $(-r+kh,r-kh)$ other than $(-r+h,r-h)$
So $K$ is shrinking with $k$, then no matter how small $h$ is, I think only finite terms of $G^(k)$ can be expended in $(-r,r)$,
as $hk->\infty$ when $k -> \infty$
Then the result always can not stand:
$sp({G(k) |(-gamma, gamma): k >0)) = C(R)|(-r, r)$
I don`t know if I am right.
The original paper is in the following:
Relevant answer
Answer
If an analytic function G is uniformly dense on compact subsets of (-r, r) in the span of its derivatives G^(k) for k > 0, then it is also uniformly dense on C(R), the set of continuous functions on the real line.
To prove this, we can use the Stone-Weierstrass theorem, which states that any continuous function on a compact interval can be uniformly approximated by polynomials. Here's an outline of the proof:
  1. Let f be a continuous function on R. We want to show that we can uniformly approximate f by functions of the form G^(k), where G is an analytic function.
  2. Consider a compact interval [a, b] contained within (-r, r). By the Stone-Weierstrass theorem, we can find a sequence of polynomials P_n that uniformly converges to f on [a, b].
  3. Since G is uniformly dense on compact subsets of (-r, r) in the span of its derivatives, for each k > 0, we can find a sequence of analytic functions G_n^(k) that uniformly converges to P_n^(k) on [a, b].
  4. Now, consider the sequence of functions F_n = sum(G_n^(k), k > 0) for each n. Each F_n is an analytic function since it is a sum of analytic functions.
  5. By construction, F_n uniformly converges to f on [a, b] because each G_n^(k) uniformly converges to P_n^(k) for each k > 0.
  6. Since [a, b] was an arbitrary compact interval contained within (-r, r), we can repeat this process for every compact subset of (-r, r).
  7. By taking the limit as n goes to infinity, we obtain a sequence of analytic functions F_n that uniformly converges to f on every compact interval within (-r, r).
  8. By the uniqueness of analytic continuation, the limit of F_n as n goes to infinity is an analytic function G that uniformly approximates f on the whole real line.
Therefore, we have shown that if an analytic function G is uniformly dense on compact subsets of (-r, r) in the span of its derivatives G^(k) for k > 0, then it is also uniformly dense on C(R), the set of continuous functions on the real line.
  • asked a question related to Convergence
Question
2 answers
<<The job is described in the followign code, where the gs.chk file is the result of a successful opt + freq calculation.>>
--link1--
%OldChk=8PhOPc_DMF_gs.chk
%Chk=8PhOPc_DMF_ex.chk
# td=(singlets,nstates=12) CAM-B3LYP TZVP Geom=check guess=read
scrf=(solvent=n,n-dimethylformamide) Int=(Ultrafine)
8-PhOPc TD 12 singly excited states: CAM-B3LYP/TZVP
0 1
<<This is the last few lines of output.>>
1 vectors produced by pass997 Test12= 5.85D-13 1.00D-09 XBig12= 5.26D-15 1.08D-09.
1 vectors produced by pass998 Test12= 5.85D-13 1.00D-09 XBig12= 5.35D-15 1.18D-09.
1 vectors produced by pass999 Test12= 5.85D-13 1.00D-09 XBig12= 5.23D-15 1.08D-09.
1 vectors produced by pass*** Test12= 5.85D-13 1.00D-09 XBig12= 5.29D-15 1.14D-09.
CPHF failed to converge in LinEq2.
Error termination via Lnk1e in /opt/apps/gaussian/16.c.01/g16/l1002.exe at Thu Jan 25 22:29:53 2024.
Job cpu time: 45 days 22 hours 11 minutes 56.9 seconds.
Elapsed time: 1 days 3 hours 47 minutes 34.0 seconds.
File lengths (MBytes): RWF= 224288 Int= 0 D2E= 0 Chk= 337 Scr= 1
Relevant answer
Answer
This is a known problem in gaussian, that originates from gaussian using two different algorithms for frequency calculations . If the system is too large, gaussian switches to the second algorithm, which is superslow (since it uses disk memory instead of RAM) and often fails.
The solution is to add the following keyword to the input line:
Int=Acc2E=11
which always worked for me (DFT freq for systems of ~100 atoms).
Some people reported also that adding instead:
CPHF(MaxInv=10000)
also solves the problem, though I never used it.
  • asked a question related to Convergence
Question
5 answers
Summary of the Proof of the Collatz Conjecture:
All natural numbers can be divided into odd and even numbers.
All even numbers become odd when repeatedly halved (divided by 2).
All odd numbers can be classified into two groups: those of the form 4n + 1 and those of the form 4n + 3.
For all numbers of the form 4n + 3, when multiplied by 3 and added 1, the result is even. When halved, it becomes either a number of the form 4n + 3 or 4n + 1, and ultimately converges to a unique odd number of the form 4n + 1.
When the unique odd number of the form 4n + 1 is tripled and added 1, it becomes even (12n + 4), which then halved becomes 6n + 2, and finally becomes the unique odd number 3n + 1.
For the unique odd number 3n + 1, if n is odd, then 3n + 1 is even, and when repeatedly halved, it converges to the unique odd number of the form 4n + 1 or 4n + 3.
By repeating this process, it eventually converges to the value n = 0, where 4n + 1 = 3n + 1. When n is 0, we have 4n + 1 = 4(0) + 1 = 1, which immediately converges to 1.
Therefore, all natural numbers, when subjected to the given operations, eventually converge to 1. This completes the proof of the Collatz Conjecture.
By presenting this detailed proof, we have shown that all natural numbers will inevitably converge to the value 1, confirming the validity of the Collatz Conjecture.
Relevant answer
Answer
Peter Breuer , 4n+1 and 3n+1 corresponding to n are unique.
  • asked a question related to Convergence
Question
1 answer
In Guassian, which convergence algorithm is best for working with transition metal interaction? It is taking a long time to even get the first block of coordinates, in the output file it said to use the steepest-descent method, but I think maybe this is not enough. I read that in Orca there is the KDIIS algorithm to enable faster convergence for transitional metals, is there something similar in Gaussian?
I tried scf=qc and scf=xqc and it does not work for the interaction between graphene and a transition metal cluster.
Relevant answer
Answer
The main problem seems not to be due to the algorithm, but to the multireference nature of some transition metal compounds that renders the SCF and the PES rather unreliable. DFT has a lot of problems to describe such systems and that is a physical limitation of the theory.
I'd say that you can't employ DFT on transition metals without some critical thinking, that is a core discussion in the inorganic modelling and you can find references and discussion on it almost everywhere. I'm not sure of what can or can not be done in terms of convergence algorithm, since I believe we should develop more into the multireference methods.
  • asked a question related to Convergence
Question
2 answers
I have been trying to optimise the geometry of compounds for DES formation using TurbomoeX 4.4.1 and I have been facing problem mentioned in the question. I have tried everything like from creating SMILES to downloading molefile. Nothing works against this error or max. number of iterations. The level of theory is DFT and DFT settings (functional BP86) and gridsize m3) where SCF convergence (energy convergence 10-6) [hartree] and DIIS damping (step 0.05). Please help/guide how can I resolve this problem? if I somehow am able to converge then the COSMO does not take the created .cosmo file by saying that the file is blank and not able to procee. Appreciate your help.
Relevant answer
Answer
Thank you Ahmad Al Khraisat for your valuable answer.
  • asked a question related to Convergence
Question
3 answers
I am working on a project that implements PSO to solve a nonlinear optimization equation (minimization problem). I want to ensure that PSO is not falling for premature convergence (i.e choosing a solution too early and claiming it to be the best solution).
Relevant answer
Answer
Hi, this is not a simple question to answer !
But there are some points to focus on to modify the swarm behavior of PSO core algorithm :
- Initialize population using methods to maximize search space coverage (such as latin hypercubes, sequences, ...)
- try different hyper-parameter values (to poderate inertia vs social behavior)
- try different neighborhood topology.
Then there are other evolutions of the core algorithm, but other evolutions as TRIBES, FIPS, ...
you can find more at :
Clerc, M. et J. Kennedy. 2002, "The particle swarm - explosion, stability, and convergence in a multidimensional complex space"
Mendes, R., J. Kennedy et J. Neves. 2004, "The fully informed particle swarm : simpler, maybe better"
Clerc, M. 2003, "TRIBES - Un exemple d’optimisation par essaim particulaire sans paramètre de contrôle"
El Dor, A. 2012, Perfectionnement des algorithmes d’Optimisation par Essaim Particulaire. Application en segmentation d’images et en électronique (study of topologies, in french)
GOOD LUCK !
  • asked a question related to Convergence
Question
1 answer
Hello all,
I'm running a Bone Healing simulation in ABAQUS. For each loop, I update the material properties based on the Octahedral shear strain and Flvel generated by the simulation. So, basically, it is one ABAQUS simulation per iteration and then the material properties are updated accordingly, and a new .inp file is written for the next iteration/load-step
Now, sometimes, in the midddle , lets say after 7 loops, ABAQUS starts writing .odb_file as well as an .odb_f file, and I can't use code to extract the Octahedral shear strain and Flvel. The error is the frame index specified in 'Step-1' is out of bounds. However, if I take the .inp file corresponding to that load-step, import into ABAQUS GUI and run the simulation, I see that the simulation is converging. So, basically nothing seems to be wrong with the .inp file as such.
Anyone has any experience with this problem in ABAQUS?
Thanks in advance! :)
Relevant answer
Answer
I have solved this problem. By checking the .dat file, it was found that this problem is due to an error in my script writing material properties while updating the inp file. So after the 7th iteration, I can't extract the strain and Flvel from it.
  • asked a question related to Convergence
Question
1 answer
I am doing non linear direct integration time history analysis in etabs. To avoid convergence error, I used Hilber huges taylor parameter alpha value to be -1/12 instead of default 0. The analysis runs successfully but hinge state is not showing. How to fix this?
Relevant answer
Answer
Hello all,
If hinges really exist, it will be appeared when repeating the analysis with smaller time steps once or by times. For a sample procedure for nonlinear time history analysis, including the repetitions, see the seismic code of New Zealand NZS 1170.5:2004, or some of my recent papers. By the way, non-zero value for the parameter of the HHT is not for this purpose; it is for cancelling extra high frequency oscillation because of discretization in space. OK, have a very nice day, and wonderful future throughout 2024. Bests
  • asked a question related to Convergence
Question
1 answer
Q1: Ontology Value to Research: Knowledge Graphs?
Q2:Knowledge Graphs Vs IDR(Interdisciplinary Research): ?
Q3:Knowledge Graphs Vs Cross-disciplinary(Involving or combining multiple disciplines): ?
Q4:Knowledge Graphs Vs Multidisciplinary(Involving multiple disciplines but with each maintaining its own methods and approaches): ?
Q5:Knowledge Graphs Vs Transdisciplinary (Going beyond disciplinary boundaries to create a unity of intellectual frameworks): ?
Q6:Knowledge Graphs Vs Convergence Research(Bringing together diverse disciplines to address complex challenges): ?
Q7:Knowledge Graphs Vs Integrative Research(Synthesizing insights and methods from different disciplines to cre