⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 u_init.m

📁 this fem program is written in matlab to simulate a room temperature of a museum under the source of
💻 M
字号:
function value = u_init ( xy, t )

%the initial temprature profile
  n = size ( xy, 1 );


 value = zeros ( n, 1 );
  index1 = find ( xy(1:n,1) > 0 );
  index = find ( xy(1:n,1) == 0 );

  value(index1) = 10.0;
  value(index) = 10.0;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -