console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>计算机仿真技术课程网页</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin-bottom: 20px;
}
iframe {
width: 100%;
max-width: 800px;
height: 600px;
border: 1px solid #999;
margin: 20px 0;
}
</style>
</head>
<body>
<h1>计算机仿真技术课程网页</h1>
<h2>有限差分离散化演示</h2>
<iframe src="https://jsrun.net/uc/explorer/有限差分算法演示.html"></iframe>
<h2>欧拉法到龙格 - 库塔法原理演示</h2>
<iframe src="euler_rk_animation.html"></iframe>
<h2>马鞍型焊缝跟踪演示</h2>
<iframe src="weld_tracking.html"></iframe>
<h2>焊缝跟踪演示</h2>
<iframe src="weld_simulation.html"></iframe>
</body>
</html>