登录
首页 » Visual C++ » HeatTransfer_1D

HeatTransfer_1D

于 2021-04-17 发布 文件大小:7161KB
0 348
下载积分: 1 下载次数: 9

代码说明:

  求解一维热传导方程,格式包括FTCS、BTCS、CNCS三种差分格式(solve one dimension heat transfer equation. )

文件列表:

HeatTransfer_1D
...............\Debug
...............\.....\HeatTransfer_1D.exe,93184,2014-03-17
...............\.....\HeatTransfer_1D.exe.manifest,406,2014-03-16
...............\.....\HeatTransfer_1D.ilk,683640,2014-03-17
...............\.....\HeatTransfer_1D.pdb,994304,2014-03-17
...............\HeatTransfer_1D
...............\...............\btcs_temp.txt,146000,2014-03-17
...............\...............\cncs_temp.txt,146000,2014-03-17
...............\...............\Debug
...............\...............\.....\CL.read.1.tlog,9984,2014-03-17
...............\...............\.....\CL.write.1.tlog,414,2014-03-17
...............\...............\.....\HeatTransfer_1D.exe.embed.manifest,2,2014-03-16
...............\...............\.....\HeatTransfer_1D.exe.embed.manifest.res,68,2014-03-16
...............\...............\.....\HeatTransfer_1D.exe.intermediate.manifest,381,2014-03-17
...............\...............\.....\HeatTransfer_1D.lastbuildstate,63,2014-03-17
...............\...............\.....\HeatTransfer_1D.log,2066,2014-03-17
...............\...............\.....\HeatTransfer_1D.vcxprojResolveAssemblyReference.cache,707,2014-03-16
...............\...............\.....\HeatTransfer_1D.write.1.tlog,0,2014-03-16
...............\...............\.....\HeatTransfer_1D_manifest.rc,220,2014-03-16
...............\...............\.....\HT_Main.obj,225984,2014-03-17
...............\...............\.....\link.2512.read.1.tlog,2,2014-03-17
...............\...............\.....\link.2512.write.1.tlog,2,2014-03-17
...............\...............\.....\link.612.read.1.tlog,2,2014-03-17
...............\...............\.....\link.612.write.1.tlog,2,2014-03-17
...............\...............\.....\link.read.1.tlog,2734,2014-03-17
...............\...............\.....\link.write.1.tlog,726,2014-03-17
...............\...............\.....\mt.read.1.tlog,350,2014-03-17
...............\...............\.....\mt.write.1.tlog,350,2014-03-17
...............\...............\.....\rc.read.1.tlog,366,2014-03-16
...............\...............\.....\rc.write.1.tlog,374,2014-03-16
...............\...............\.....\vc100.idb,248832,2014-03-17
...............\...............\.....\vc100.pdb,274432,2014-03-17
...............\...............\ftcs_temp.txt,146000,2014-03-17
...............\...............\HeatTransfer_1D.vcxproj,3970,2014-03-16
...............\...............\HeatTransfer_1D.vcxproj.filters,945,2014-03-16
...............\...............\HeatTransfer_1D.vcxproj.user,143,2014-03-16
...............\...............\HT_Main.cpp,7159,2014-03-17
...............\...............\Release
...............\...............\.......\CL.read.1.tlog,9840,2014-03-17
...............\...............\.......\CL.write.1.tlog,422,2014-03-17
...............\...............\.......\HeatTransfer_1D.exe.intermediate.manifest,381,2014-03-17
...............\...............\.......\HeatTransfer_1D.lastbuildstate,65,2014-03-17
...............\...............\.......\HeatTransfer_1D.log,2301,2014-03-17
...............\...............\.......\HeatTransfer_1D.write.1.tlog,0,2014-03-17
...............\...............\.......\HT_Main.obj,893429,2014-03-17
...............\...............\.......\link.read.1.tlog,2622,2014-03-17
...............\...............\.......\link.write.1.tlog,616,2014-03-17
...............\...............\.......\mt.read.1.tlog,800,2014-03-17
...............\...............\.......\mt.write.1.tlog,340,2014-03-17
...............\...............\.......\vc100.pdb,258048,2014-03-17
...............\HeatTransfer_1D.sdf,6508544,2014-03-17
...............\HeatTransfer_1D.sln,912,2014-03-16
...............\ipch
...............\....\heattransfer_1d-b6a368d3
...............\....\........................\heattransfer_1d-6125b4a1.ipch,16777216,2014-03-17
...............\....\........................\heattransfer_1d-b6e3ea7.ipch,17301504,2014-03-17
...............\Release
...............\.......\HeatTransfer_1D.exe,27648,2014-03-17
...............\.......\HeatTransfer_1D.pdb,527360,2014-03-17

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Generator
    这些代码可以用于产生一系列随机数,可以根据需要使用。(These codes can be used to generate a series of random numbers may be used as needed.)
    2013-07-10 14:19:34下载
    积分:1
  • mass-5
    fluent模拟焊接,熔滴过渡的质量源项(Welding Simulation, mass source)
    2020-07-02 21:00:01下载
    积分:1
  • na7
    Orthogonal Polynomials Approximation 数值分析,计算正交基多项式的系数 (Given a function f and a set of m >0 distinct points . You are supposed to write a function to approximate f by an orthogonal polynomial using the exact function values at the given m points with a weight assigned to each point . The total error must be no larger than a given tolerance. Format of function int OPA( double (*f)(double t), int m, double x[], double w[], double c[], double*eps ) where the function pointer double (*f)(double t) defines the function f int m is the number of points double x[] contains points double w[] contains the values of a weight function at the given points x[] double c[] contains the coefficients of the approximation polynomial double*eps is passed into the function as the tolerance for the error, and is supposed to be returned as the value of error. The function OPA is supposed to return the degree of the approximation polynomial. Note: a constant Max_n is defined so that if the total error is still not small enough when n = Ma)
    2011-11-27 11:47:21下载
    积分:1
  • QuartercarJJJ
    通过具有随机结构参数的四分之一车辆模型研究了具有不确定性结构参数的车辆在受到来自道路的随 机激励作用下的振动响应问题。将簧上质量、簧下质量、悬挂阻尼、悬挂刚度以及轮胎刚度均认为是随机变量。将路面的不平整引起的对车辆的激励看作高斯随机过程并通过简单指数功率谱密度来建立力学模型。(By a quarter vehicle model with random parameters studied vehicle structure uncertain structural parameters of the vibration by the random excitation the road response under question. The sprung mass, unsprung mass, suspension damping, suspension stiffness and rigidity of the tire are considered to be random variables. The excitation caused by uneven road vehicle regarded as Gaussian random process and to create a mechanical model of a simple exponential power spectral density.)
    2020-11-02 10:09:53下载
    积分:1
  • DLT057
    利用PHOTOSHOP软件可以量测出左右像片各控制点的像素坐标,通过公式可以计算出其像点坐标。再根据给定的控制点的空间坐标,利用直线线性变换解法计算出11个DLT参数即l的系数值以及内方位元素然后解算出外方位元素。另外一种方式是用单像空间后方交会的公式计算出外方位元素。利用单像空间后方交会的来结算影像的外方位元素的基本思想是:以单幅影像为基础,从该影像所覆盖地面范围内若干控制点的已知地面坐标和相应点的像坐标量测值出发,根据共线条件方程,解求该影像在航空摄影时刻的外方位元素。首先建立单文档的程序,建立一个对话框类,在这个类中进行像素坐标、控制点坐标文件的打开与读取,然后利用DLT公式进行外方位元素的解算。 数据检核部分用前方交会算法来进行,首先根据ID找到左右片的像点的同名点,然后计算变换矩阵及系数,根据给定的内方位元素,利用公式解算出像点的控制点坐标,然后和给定的控制点坐标相比较即可进行精度评定。 (PHOTOSHOP software can be measured using a photo of the control points around the pixel coordinates can be calculated by the formula sit out the image point Standard. According to the given coordinates of control points, the use of straight-line method to calculate the linear transformation of 11 DLT parameters that the coefficient l Value and calculate the orientation elements of exterior orientation elements and solutions. Another way is to use a single formula as the calculation of space resection Orientation elements out. Use as space resection alone to settle the image exterior orientation is the basic idea: to single video As the basis of images from the ground covered by a number of control points within the known ground coordinates and image coordinates of corresponding points in the measured values , The realities of collinearity equation, find the image in the time of aerial photography exterior orientation elements. First, the process to establish a single document)
    2011-05-19 10:18:50下载
    积分:1
  • saolei
    实现扫雷功能,基于c语言实现的,能够控制输入矩阵的大小(Implement demining capabilities, based on the c language, able to control the size of the input matrix)
    2013-06-25 14:29:31下载
    积分:1
  • 1.21b
    分数阶滑模工具箱,可用于解决阶次比较低的时候(fractional order sliding mode )
    2016-10-10 09:37:28下载
    积分:1
  • 1
    说明:  Fractal分形,简短的代码,清晰可用(Fractal)
    2010-09-22 18:49:09下载
    积分:1
  • 1
    说明:  实现重力式热管换热器设计计算功能,简单按照设计任务书,给出所需热管的结构尺寸,涉及的热管蒸发段和冷凝段长度分别为1m,绝热段长度30cm,内径20cm,外径25cm,热管工质为水。(Realize the gravity heat pipe heat exchanger design and calculation functions , simple design in accordance with the mission statement , given the size of the required structure of the heat pipe , heat pipe evaporator and condenser section lengths were involved 1m, adiabatic length 30cm, inner diameter 20cm, 25cm outside diameter heat pipe working fluid is water. )
    2015-03-01 18:45:20下载
    积分:1
  • phase-equivalence
    C 语言,模拟流体相平衡过程,得到混合气体平衡态以后的工况参数(C language to simulate fluid phase equilibrium process, to obtain a mixed gas equilibrium after working parameters)
    2020-09-04 16:48:06下载
    积分:1
  • 696518资源总数
  • 106208会员总数
  • 21今日下载