Preconditioning Sample Clauses

Preconditioning. 4.2.1. The fuel tank(s) shall be filled with the specified test fuel. If the existing fuel in the fuel tank(s) does not meet the specifications contained in paragraph 3.4.1. of this annex, the existing fuel shall be drained prior to the fuel fill. The test fuel shall be at a temperature less than or equal to 289 K (+16 °C). For the above operations the evaporative emission control system shall neither be abnormally purged nor abnormally loaded.
AutoNDA by SimpleDocs
Preconditioning. ‌ Now we illustrate that preconditioning can significantly accelerate conver- gence of the iterative method. We only show results for the Gaussian blurred image with synthetic boundary conditions; similar results can be obtained with motion blur. Synthetic BC deblurred image zoom: table zoom: face Synthetic BC with preconditioning Figure 2.17: Deblurring results on Gaussian blurred “Xxxxxxx” with syn- thetic boundary conditions. The first row is obtained without precondition- ing at the 500th iteration; the second row is obtained with preconditioning at the 20th iteration. Table 2.6: PSNRs of deblurring results with and without preconditioning. Blurred image Synthetic Synthetic with preconditioning PSNR 24.5681 28.7532 29.6790 iteration - 500 20 Figure 2.18: Plot of the deblurring errors with and without preconditioning. The deblurring results with and without preconditioning are shown in Figure 2.17, the corresponding PSNRs are shown in Table 2.6, and the er- ror plots are shown in Figure 2.18. Recall that without preconditioning, the minimum error is not yet attained even at 500th iteration. With precondi- tioning, the relative error drops very quickly, attaining its minimum at 20th iteration before increasing a little, and then levels off. In addition, we obtain a higher PSNR and recover more details, e.g. the texture of the chair.
Preconditioning. Every preconditioner matrix P for ill-posed inverse problems should satisfy the following general properties: • P is relatively inexpensive to construct, • It is relatively inexpensive to solve linear systems of the form Px = y, • The preconditioned system should satisfy P−1Kr ≈ I, where Kr = Q∗ΦΛQ. The last condition, refers to the rate of convergence, which is faster when more of the large eigenvalues are clustered around 1. The process of image deconvolution requires solving linear systems with highly structured matrices, including circu- lant, Toeplitz and Xxxxxx. Preconditioners for such systems have been widely studied in the literature [26, 80, 81]. In this work we consider a method, where the preconditioner is constructed to be a circulant approximation of matrix K. When the PSF is spatially invariant, then there exist very inexpensive methods [27, 28] (based on FFTs) to construct the circulant preconditioner by solving one of the following minimizations problems min ǁK − PǁF or min ǁK − Pǁ1 (2.16) over all circulant matrices, P. For spatially variant blurs a similar approach is used, however, in that case we construct a preconditioner using a single PSF that is the average of all given PSFs. Although this technique is not optimal, it works well in practice and makes the implementation much easier than creating a separate preconditioner for each PSF [83].
Preconditioning. ‌ The choice of the preconditiong matrix M is crucial for solving the optimization problem (5.18). If we do not have a preconditioner or we choose the preconditioner M as identity, the original Hessian for the weighted least squares problem is expressed as
Preconditioning. ‌ Cheap approximations of the system matrix are useful for iterative methods that can be accelerated by preconditioners (for an introduction to preconditioning, we recommend the books [42, pp. 275-368], [21, pp. 650-666], and [6, pp. 688-709], as well as the survey [5]). We tested each method as a preconditoner for a preconditioned conjugate gradient least squares (PCGLS) method applied to a 256 × 256 image deconvolution problem with the Satellite Example PSF. For this problem, since each method gave comparable results, we were concerned with how quick the solution was. In particular, we separated out the time to construct the operator from the time required to converge iterations. We present the results for each method in their specific chapter, and summarize the results in Appendix C.
Preconditioning. ‌ Unlike the baseline method, the truncation method does not construct a full set of singular vectors and values by default. For preconditioning, this can cause prob- lems. For example if we use a low-rank preconditioner M to precondition a full rank system Kx + e = d, we get the system MKx + Me = Md. The product MK has a lower rank than K, making this problem under-determined. Similarly, right-preconditioning causes the restored solution to exist in a smaller subspace than the original problem. When using a low rank preconditioner, the rank must be high enough to capture most of the information about the problem. With this restriction, we used a rank of 1520 for this problem, split into A = 38 and m = 40. The rest of the parameters for this example are identical to the baseline method. It took 1.10 seconds on average to construct the truncated preconditioner, and the iterations took a total of 0.179 seconds to converge, with 7 iterations re- quired for convergence. So, in total, the PCG method converged in 1.28 seconds for the truncation method. This total time is slower than the using the baseline as a pre- conditioner but faster than no preconditioner. The time taken on iterations is faster for the truncation method than the baseline method, which indicates that the trun- cation method may be more useful in cases where there are many right-hand sides. Table 4.1 shows the comparative times for no preconditioner versus the truncation method. See Appendix C for a full comparison between all methods. No preconditioner Truncated Iterations 345 7 Setup time (sec) 0.0 1.10 Calculate time (sec) 6.04 0.179 Total time (sec) 6.04 1.28 Table 4.1: Truncation Preconditioner Timings. A summary of the timing results for the PCLGS problem, with the truncation method used as a preconditioner, is shown. The truncation method saves time and takes fewer iterations compared to an unpreconditioned system. Despite the added computational cost compared to the baseline method, the trun- cation method is an effective preconditioner. In particular, it dramatically decreases the number of iterations required for convergence.
Preconditioning. ‌ The reordering method performs nearly identically to the truncation method in the preconditioning test. The setup of the reordering method, which requires computing the approximate TSVD, took very slightly longer, and both methods took the same number of iterations to converge. Computing the TSVD took on average 1.22 seconds. In total, completing the 7 iterations took 0.202 seconds, for a total computation time from start to finish of 1.43 seconds. This total time is only .10 second slower than the truncation method, which is not significant enough to conclude the reordering method will consistently be slower for this test problem. So, like the truncation method, the reordering method is considerably faster than not using a preconditioner but slower than the baseline method, with the most significant difference in the setup time. As with the truncation method, the reordering method may be preferable over the baseline in cases when multiple right-hand sides are used, or when K is poorly approximated by K1. Appendix C details the differences between the performance of each preconditioner. No preconditioner Reordering Iterations 345 7 Setup time (sec) 0.0 1.22 Calculate time (sec) 6.04 0.208 Total time (sec) 6.04 1.43 Table 5.1: Reordering Method Timings for PCGLS. A summary of the timing results for the PCLGS problem, with the reordering method used as a preconditioner, is shown. The reordering method saves time and takes fewer iterations compared to an unpreconditioned system. The reordering method is an effective preconditioner overall, reducing the number of iterations and time taken to converge compared to not using a preconditioner.
AutoNDA by SimpleDocs
Preconditioning. 1 We have seen in Chapter 5 that the nonlinear iterative solver based on the mixed formulation of the Xxxxxxx problem converges – for “academic” test cases – within a small number of iterations and is robust with respect to the regularization parameter ε and the size of the mesh. Also, the solver works well for the non-regularized case ε = 0. The price of solving the mixed formulation as opposed to the formulation in primitive variables is that additional unknowns augment the linear system, that is, the linear systems to be solved at each nonlinear iteration are larger than those for the formulation in primitive variables. Note that our numerical experiments from Chapter 5 are performed on two dimensional test problems on a relatively small scale and a direct method is used for solving the linear systems. Direct methods, however, are usually unsuitable for realistic problems which are normally on a larger scale be- cause of their poor scaling properties and an excessive memory requirement for larger systems. This is in particular the case when solving three dimensional problems, when direct methods become unaffordable even for problems of moderate size. The purpose of this chapter is to introduce a more sophisticated linear solver which is suitable for problems on larger scale, in particular for problems in three dimensions. 1The work presented in this chapter was performed in close collaboration with Panayot Vas- silevski, Center for Applied Scientific Computing, Xxxxxxxx Livermore National Laboratory, Liver- more, CA. More precisely, we will solve linear systems arising from the non-regularized Xxxxxxx problem using a Krylov subspace method. We will introduce a preconditioner which results in a fast and robust convergence of the linear iterative solver within a small number of iterations independent of the mesh size. We begin this chapter by explaining the concept of two important methods in nu- xxxxxxx analysis, multigrid methods and domain decomposition methods. We then provide an overview over the linear systems to be solved and the existing methods for preconditioning them in Section 6.3. In Section 6.4 we suggest using the regularized Xxxxxxx problem as a preconditioner for solving the non-regularized problem. For efficient preconditioning of the linear system, the regularized Xxxxxxx problem needs to be approximated. This can be done in different ways. We present two of these possibilities in this chapter, the inexact factorization of the system in...

Related to Preconditioning

  • Installation Where installation is required, Contractor shall be responsible for placing and installing the product in the required locations at no additional charge, unless otherwise designated on the Contract or purchase order. Contractor’s authorized product and price list shall clearly and separately identify any additional installation charges. All materials used in the installation shall be of good quality and shall be free of defects that would diminish the appearance of the product or render it structurally or operationally unsound. Installation includes the furnishing of any equipment, rigging, and materials required to install or replace the product in the proper location. Contractor shall protect the site from damage and shall repair damages or injury caused during installation by Contractor or its employees or agents. If any alteration, dismantling, excavation, etc., is required to achieve installation, the Contractor shall promptly restore the structure or site to its original condition. Contractor shall perform installation work so as to cause the least inconvenience and interference with Customers and with proper consideration of others on site. Upon completion of the installation, the location and surrounding area of work shall be left clean and in a neat and unobstructed condition, with everything in satisfactory repair and order.

  • Preventive cleaning (periodontal cleaning in the presence of inflamed gums is considered to be a Basic Benefit for payment purposes), topical application of fluoride solutions, space maintainers.

  • Preventive Maintenance The Contractor shall provide necessary preventive maintenance, required testing and inspection, calibration and/or other work necessary to maintain the equipment in complete operational condition during the warranty period.

  • Stormwater Notwithstanding any other provisions or terms of this Agreement, Company acknowledges that certain properties within the Premises or on Authority-owned land are subject to stormwater rules and regulations. Company agrees to observe and abide by such stormwater rules and regulations as may be applicable to the Premises, and, if applicable, Company hereby expressly covenants, warrants, and represents to Authority, in connection with Company’s operations on the Premises, the following:

  • Maintenance and Repairs 7.1 Tenant shall, at its expense, throughout the Term and all renewals and extensions thereof, maintain in good order, condition and repair the Premises, including but not limited to heating and air conditioning equipment, walls, floors and ceilings, window exteriors, mechanical and electrical systems and equipment exclusively serving the Premises, electric light fixtures, bulbs, tubes and tube casings, doors, floor coverings, dock doors, levelers, plumbing system and plumbing fixtures, Tenant’s signs and utility facilities not maintained by Landlord. Landlord shall use reasonable efforts to extend to Tenant the benefit from warranties on such items, if any, that have been made by Landlord’s contractors or vendors and to extend to Tenant, as and if available, any bulk buying power that Landlord may have with such contractors or vendors. If any portion of the Premises or any system or equipment in the Premises which Tenant is obligated to repair cannot be fully repaired, Tenant shall promptly replace the same, regardless of whether the benefit of such replacement extends beyond the Term. Tenant shall, at Tenant’s expense, maintain a preventive maintenance contract providing for the regular inspection (at least quarterly) and maintenance of the heating and air conditioning system by a licensed and qualified heating and air conditioning contractor, or Tenant shall perform such HVAC inspection and maintenance with duly licensed and qualified employee. The cost of such preventive maintenance contract shall be paid by Tenant and an expense solely chargeable to Tenant; but if Landlord so elects, same may be billed directly by Landlord to Tenant where Landlord on Tenant’s behalf enters into such preventive maintenance contract and in such case shall be deemed Additional Rent (Landlord alone may so elect whether to enter into such preventive maintenance contract on Tenant’s behalf). Landlord shall have the right, upon notice to Tenant, to undertake the responsibility for preventive maintenance of any other system or component at Tenant’s expense. Tenant shall be responsible for janitorial services and trash removal from the Premises, at Tenant’s expense. Landlord and Tenant intend that, at all times during the Term, Tenant shall maintain the Premises in good order and condition and appearances reasonably commensurate with the balance of the Property. All of Tenant’s obligations to maintain and repair shall be accomplished at Tenant’s sole expense. If Tenant fails to maintain and repair the Premises as required by this Section, Landlord may, on 10 days’ prior written notice (except that no notice shall be required in case of emergency), enter the Premises and perform such maintenance or repair on behalf of Tenant; provided such entry is made in compliance with Applicable Laws, including but not limited to, the Marijuana code. In such cases, Tenant shall reimburse Landlord immediately upon demand for all costs incurred in performing such maintenance or repair plus an administration fee equal to 5% of such actual and reasonable costs or expenses.

  • Metering The Interconnection Customer shall be responsible for the Connecting Transmission Owner’s reasonable and necessary cost for the purchase, installation, operation, maintenance, testing, repair, and replacement of metering and data acquisition equipment specified in Attachments 2 and 3 of this Agreement. The Interconnection Customer’s metering (and data acquisition, as required) equipment shall conform to applicable industry rules and Operating Requirements.

  • Transportation Transportation expenses include, but are not limited to, airplane, train, bus, taxi fares, rental cars, parking, mileage reimbursement, and tolls that are reasonably and necessarily incurred as a result of conducting State business. Each State agency shall determine the necessity for travel, and the mode of travel to be reimbursed.

  • Heating The Hirer shall ensure that no unauthorised heating appliances shall be used on the premises when open to the public without the consent of the management committee. Portable Liquefied Propane Gas (LPG) heating appliances shall not be used.

  • Dewatering 4.7.1 Where a part of a site is affected by surface water following a period of rain, thus rendering some areas unsafe for productive work, consistent with the Employer’s obligations under the OH&S Act, all non- trades employees shall assist in ‘dewatering’ their own work site or area if it is so affected. Such work to be paid at single time rates. Productive work will continue in areas not so affected.

  • Network Maintenance and Management 36.1 The Parties will work cooperatively to implement this Agreement. The Parties will exchange appropriate information (for example, maintenance contact numbers, network information, information required to comply with law enforcement and other security agencies of the Government, escalation processes, etc.) to achieve this desired result.

Time is Money Join Law Insider Premium to draft better contracts faster.