#!/usr/bin/env ruby
#
#= dcmodel thumnail generate ruby script
#
#  Editor :: sugiyama
#  Version:: 2011/06/23 20:06:39
#
#== Overview
#
#This file is generate by following ruby script automatically.
#
#      /home/sugiyama/bin/dcmodel-thum.rb
#
#Please edit this file according to your purpose.
#
#== Usage
#
#
##################################################

require "/home/sugiyama/bin/dcmodel-thum.rb"

######################################################
if $0 == __FILE__ then
  thumb = DCModelThumbnail.new

#  thumb.copyright = "GFD Dennou Club"
  thumb.index     = "../exp"
#  thumb.index_ext = ".htm"
  thumb.infofile  = "exp.txt"
#  thumb.ext_list.push("bmp")
#  thumb.headlimit = "headlimit_"
#  thumb.figdir    = "../figdir"
#  thumb.css       = "/GFD_Dennou_Club/ftp/arch/dcmodel/htmltools/dcmodel.css"
#  thumb.rd2_path  = "/usr/bin/rd2"
#  thumb.rd2htmlextlib = "/GFD_Dennou_Club/ftp/arch/dcmodel/lib"
#  thumb.img_width  = 200
#  thumb.img_height = 150
  thumb.figtable_num = 2
#  thumb.html_author  = "sugiyama"
  thumb.title     = "deepconv/arare4 vs. deepconv/arare5"
  thumb.message   = Array.new
  thumb.message   << <<-MSG
=begin
[((<地球流体電脳倶楽部|URL:http://www.gfd-dennou.org>))]
[((<dcmodel|URL:http://www.gfd-dennou.org/arch/dcmodel>)) |
((<dcmodel-tools|URL:http://www.gfd-dennou.org/arch/dcmodel/bin>))]

= x 方向の移流計算 (y方向一様)

== 目的

* deepconv/arare4 と deepconv/arare5 の比較
  * 同じ初期値から初めて, 同じ結果になるかチェックする.
  * arare4 は 2011-03-03 版を利用. 

* 水平風 (一定値) によって温度擾乱を移流される
  * 初期の温移分布はガウス分布
  * x 方向の風速は一定 (10 m/sec)
  * y 方向は一様
  * 温位の移流のみ計算
  * 乱流拡散なし

== ソース, 設定ファイル, およびリスタートファイル・ヒストリーファイル

* ((<置き場|URL:./>))
  * メインプログラム (arare.f90) のみ若干修正

== 結果

  MSG
  thumb.create
end

