TABLE OF CONTENTS
::pwtk::mdi::get
SYNOPSIS
proc ::pwtk::mdi::get {} {
DESCRIPTION
Returns the content of the matdyn.x input
SOURCE
loadDefaults_
# matdyn.x uses INPUT namelist, but this name is too generic,
# hence pwtk uses MATDYN instead, hence we need to substitute the
# MATDYN string with INPUT
set input_ [regsub -- {\&MATDYN} [::pwtk::input::namelistGet MATDYN] {\&INPUT}]
append input_ [::pwtk::input::cardGetContent MATDYN.affixCards]
return [::pwtk::skipEmptyLines $input_]
}