合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        COMP5930M 代做、代寫 c++,java 程序語言

        時間:2023-12-11  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



        School of Computing: assessment brief
           Module title
         Scientific Computation
          Module code
         COMP5930M
          Assignment title
         Coursework 2
          Assignment type and description
         Coursework assignment
          Rationale
         TBA
          Weighting
         20% of total mark
          Submission dead- line
         December 14th 2023 at 10:00
          Submission method
         Turnitin submission through Minerva
          Feedback provision
         Feedback provided on Minerva
          Learning outcomes assessed
         (i) Formulate and solve systems of nonlinear equations to solve challenging real-world problems arising from en- gineering and computational science; (ii) Implement al- gorithmic solutions to solve computational differential equation problems based on mathematical theory; (iii) Analyse computational linear algebra problems to iden- tify and implement the most efficient and scalable solu- tion algorithm to apply for large problems.
          Module lead
         Dr Toni Lassila
                   1

        1. Assignment guidance
        Provide answers to the two exercises below. Answer both exercises.
        2. Assessment tasks
        Exercise 1: The Burgers’ equation models the propagation of a pres- sure wave in shock tube. It is a nonlinear partial-differential equation in one spatial dimension to find u(x, t) s.t.
        ∂u + u∂u = ν ∂2u, (1) ∂t ∂x ∂x2
        where the boundary conditions u(a, t) = ua and u(b, t) = ub for all t, and the initial condition u(x, 0) = u0(x) need to be prescribed in order to obtain a well-posed problem. Here ν is the kinematic viscosity of the fluid. For ν = 0 we have the inviscid Burgers’ equation, and for ν > 0 we have the viscous Burgers’ equation.
        (a) Applying the central difference formula to the second order deriva- tive in space, the upwind difference formula
        􏰀Uk−Uk 􏰁
        i−1
        using implicit Euler’s method leads to the discrete formulation: Uk −Uk−1 􏰀Uk −Uk 􏰁 􏰀Uk −2Uk +Uk 􏰁
        Fi(U)= i i +Uik i i−1 −ν i+1 i i−1 =0 ∆t h h2
        (2) for i = 2,3,...,m−1 where the interval has been discretised with
        m uniformly distributed nodes and a spatial grid size h. Implement the function F as a python subroutine fun burgers.py
                def fun_burgers( uk, ukp, dt, h, nu, ua, ub )
        where uk is the vector Uk of size m, ukp is the previous time-step solution vector Uk−1, dt is the time-step ∆t, h is the spatial grid size parameter h, and nu is the kinematic viscosity ν. Include the boundary conditions ua and ub in the implementation. [6 marks]
        2
        Uik i
        to the first order derivative in space, and discretising (1) in time
         h
           
        (b) Derive the analytical formulas for the nonzero elements on row i of the Jacobian matrix for (2): [4 marks]
        ∂Fi , ∂Fi, ∂Fi . ∂Ui−1 ∂Ui ∂Ui+1
        (c) Solve problem (2) numerically using your fun burgers.py and the PDE solver template solver burgers.py provided in the course- work folder. Use the viscosity value ν = 0.01, the time-step ∆t=0.01,thegridsizeh=0.01,andafinaltimeofT =1. The initial solution u(x, 0) should be taken as a unit step located at x = 0.1 (see below) and the boundary conditions as: u(0, t) = 1 and u(1, t) = 0.
           Figure 1: Initial condition u0(x) for the Burgers’ equation (1)
        Plot the solution u(x, T ) at the final time step T = 1 and include it in your report. Also report the total number of Newton iterations required for the numerical solution (sum of Newton iterations over all time steps). [2 marks]
        3

        (d) The solution of Burgers’ equation (1) can be shown to be a (decay- ing) wavefront that travels from left to right at a constant velocity v. What is the approximate value of the numerical wavefront ve- locity vnum for ν = 0.01, ∆t = 0.01, and h = 0.01? Measure the approximate location of the wavefront using the point where the solution u(xmid) ≈ 0.5. [1 mark]
        (e) Replace the discretisation of the nonlinear convection term with the downwind difference formula
        􏰀Uk − Uk 􏰁
        i (3)
        and solve the problem with same parameters as in (c). Plot the solution u(x,T) at the final time step T = 1 and include it in your report. Also report the total number of Newton iterations required for the numerical solution (sum of Newton iterations over all time steps). What is the numerical wavefront velocity vnum in this case?
        Now set ν = 0.001 and solve the problem again using the down- wind difference formula. What do you observe? Now solve the problem with ν = 0.001 using the original upwind difference for- mula and compare the results. What is the numerical wavefront velocity vnum in this case? [7 marks]
        Uik i+1
        h
         4

        Exercise 2: Consider the anisotropic diffusion equation to find u(x, y) s.t.
        􏰀 ∂2u ∂2u􏰁
        − μx∂x2 +μy∂y2 =f(x,y), (x,y)∈(0,1)×(0,1), (4)
        and the boundary condition u = 0 on Γ (the boundary of the unit square), where u is a scalar function that models the temperature of a heat-conducting object modelled here as a unit square and f(x,y) is a function modelling a heat source. The heat conductivity coefficients, μx > 0 and μy > 0, can have different magnitudes (anisotropy).
        (a) Discretising the problem (4) using the second-order finite differ- ence formulas
        ∂2u ≈ ui,j−1 − 2ui,j + ui,j+1 .
        Write the second-order finite difference stencil (similarly as in Tu- torial 7)
        ∂2u ≈ ui−1,j − 2ui,j + ui+1,j , ∂x2 h2
          ∂y2
        −μx h2 −μy h2 = fi,j.
        h2 􏰀ui−1,j − 2ui,j + ui+1,j 􏰁 􏰀ui,j−1 − 2ui,j + ui,j+1 􏰁
        leads to the discretised form
          ?**7;
        s11 s12 s13 ?**8; ?**8;
        S=s s s?**8;  21 22 23?**8;
        ?**8; s s s?**9;
        corresponding to this finite difference scheme. [4 marks] (b) Implement a python function source function.py
            def source_function( x, y, h )
        that returns the right-hand side by evaluating the function:
        f(x,y) :=
        ⭺**;1, ifx≥0.1andx≤0.3andy≥0.1andy≤0.3 0, otherwise
        .
        Include the source code in your answer. [3 marks] 5
        31 ** 33
        (5)

         Figure 2: Computational domain for problem (4) and the sub-region where the heat source is located (in red).
        (c) Modify the solver from Tutorial 7 to numerically solve the diffusion problem (4) for the right-hand side (5).
        Solve the linear problem AU = F using the conjugate gradient method (without preconditioning) with the diffusion coefficients μx = 1 and μy = 1, stopping tolerance tol = 10−6, and maxi- mum of 1000 CG iterations. You can use the CG implementation in scipy.sparse.linalg.cg for this problem or code your own implementation.
        Plot the solution surface and include the plot in your answer. How many iterations does it take for CG to converge in this case?
        [2 marks]
        (d) Consider now the use of a preconditioner to accelerate the con- vergence of CG. The incomplete-LU preconditioner approximates the system matrix A ≈ LincUinc by performing Gaussian elimi- nation but setting to zero any elements that are smaller than a dropoff tolerance ε chosen by the user. You can use the imple- mentation provided in scipy.sparse.linalg.spilu to compute
        6

        the incomplete factors Linc and Uinc.
        Write a python implementation myPCG.py of the preconditioned
        conjugate gradient from Lecture 18:
                    def myPCG( A, b, L, U, tol, maxit )
        that solves the preconditioning step for the residual, Mzi+1 = LU zi+1 = ri+1 , using appropriate solution algorithms. Include the source code as part of your answer. [4 marks]
        (e) Solve the problem (4) again using your preconditioned CG imple- mentation from (d). Use a dropout tolerance of ε = 0.1 for the incomplete LU-factorisation.
        How many nonzero elements (nnz) do the factors Linc and Uinc have in this case?
        How many PCG iterations does the problem take to converge to tol = 10−6 now?
        [2 marks]
        (f) Repeat the experiment from (e) with different values of the dif- fusion coefficients. Solve the problem (4) with μx = 0.1 and μx = 0.01, while keeping the other value at μy = 1. Solve the problem using PCG with the same ILU-preconditioner as before with a dropout tolerance of ε = 0.1. Plot the two respective solu- tions and the respective number of CG iterations. What do you observe?
        [5 marks]
        3. General guidance and study support
        The MS Teams group for COMP53**M Scientific Computation will be used for general support for this assignment. If your question would reveal parts of the answer to any problem, please send a private message to the module leader on MS Teams instead. You can also use the tutorial sessions to ask questions about coursework.
        4. Assessment criteria and marking process
        Assessment marks and feedback will be available on Minerva within
        three weeks of the submission deadline. Late submissions are allowed 7

        within 14 days of the original deadline providing that a request for an extension is submitted before the deadline. Standard late penalties apply for submissions without approved extensions.
        5. Presentation and referencing
        When writing mathematical formulas, use similar notation and sym- bols as during the lectures and tutorials. Hand-written sections for mathematical notation are acceptable but need to be clearly readable.
        You may assume theorems and other results that have been presented during lectures and tutorials as known. Any other theorems need to be cited using standard citation practice.
        6. Submission requirements
        This is an individual piece of work. Submit your answers through Tur- nitin as one PDF document (generated either in Word or with LaTeX). You may use hand-written and scanned pages for mathematical formu- las, but these need to be clearly legible and the document must contain at least some typeset text or Turnitin will reject it. All submissions will be checked for academic integrity.
        7. Academic misconduct and plagiarism
        Academic integrity means engaging in good academic practice. This involves essential academic skills, such as keeping track of where you find ideas and information and referencing these accurately in your work.
        By submitting this assignment you are confirming that the work is a true expression of your own work and ideas and that you have given credit to others where their work has contributed to yours.
        8. Assessment/marking criteria grid
        Total number of marks is 40, divided as follows:
        Exercise 1 (One-dimensional Burgers equation): 20 marks
        Exercise 2 (Anisotropic diffusion and conjugate gradient): 20 marks
        請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:CAN201 代做、代寫 Python語言編程
      2. 下一篇:代寫COM6471、代做 java 語言編程
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        出評 開團(tuán)工具
        出評 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        戴納斯帝壁掛爐全國售后服務(wù)電話24小時官網(wǎng)400(全國服務(wù)熱線)
        戴納斯帝壁掛爐全國售后服務(wù)電話24小時官網(wǎng)
        菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話24小時服務(wù)熱線
        菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話2
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時客服熱線
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士3號線
        合肥機(jī)場巴士3號線
      4. 上海廠房出租 短信驗(yàn)證碼 酒店vi設(shè)計

        主站蜘蛛池模板: 久久99热狠狠色精品一区| 日韩人妻无码一区二区三区| 久久一区二区三区免费| 一区二区和激情视频| 国产亚洲一区二区三区在线| 一区二区国产在线观看| 亚洲AV无码一区二区一二区| 国产在线一区二区三区| 一本AV高清一区二区三区| 国产成人片视频一区二区| 日韩视频一区二区在线观看| 精品国产AV一区二区三区| 精品一区二区三区免费毛片爱| 中文字幕av无码一区二区三区电影 | 国产一区精品视频| 亚洲AV无码一区二区一二区| 亚洲高清日韩精品第一区| 久久综合九九亚洲一区| 久久国产一区二区三区| 精品一区二区三区四区| 国产成人久久精品一区二区三区 | 老鸭窝毛片一区二区三区| 日韩在线一区高清在线| 精品国产亚洲第一区二区三区| 日韩一区二区三区射精| 久久精品国内一区二区三区| 一区二区不卡在线| 亚洲AV无码一区二区三区电影 | 夜夜精品无码一区二区三区| 国产一区视频在线免费观看| 国产精品xxxx国产喷水亚洲国产精品无码久久一区 | 在线观看精品一区| 日韩动漫av在线播放一区| 无人码一区二区三区视频| 国产精品va无码一区二区| 精品国产a∨无码一区二区三区| 亚洲av无一区二区三区| 视频精品一区二区三区| 亚洲av无码一区二区三区网站| 少妇激情AV一区二区三区| 人妻在线无码一区二区三区|