|
@@ -322,7 +322,7 @@
|
|
|
placeholder="请选择"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in liftindexlist"
|
|
|
+ v-for="item in spandirectionindexlist"
|
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
|
:value="item.value"
|
|
@@ -397,7 +397,7 @@ let cl = ref(1)
|
|
|
let cd = ref(1)
|
|
|
let cmz = ref(1)
|
|
|
let writetecplotsurfacesolution = ref(1)
|
|
|
-let spandirection = ref(1)
|
|
|
+let spandirection = ref('x')
|
|
|
let slices = ref("")
|
|
|
let writeslicesolution = ref(1)
|
|
|
let equationtype = ref("RANS")
|
|
@@ -416,6 +416,11 @@ let liftindexlist = ref([
|
|
|
{ label: "y", value: 2 },
|
|
|
{ label: "z", value: 3 }
|
|
|
])
|
|
|
+let spandirectionindexlist = ref([
|
|
|
+ { label: "x", value: 'x' },
|
|
|
+ { label: "y", value: 'y' },
|
|
|
+ { label: "z", value: 'z' }
|
|
|
+])
|
|
|
let inParams = ref([
|
|
|
{
|
|
|
code: "mach",
|
|
@@ -555,7 +560,7 @@ let adflowvalue = ref({
|
|
|
NewtonKrylov:1,
|
|
|
ANK:1,
|
|
|
proname: "巡航工况",
|
|
|
- temperature: 288.15,
|
|
|
+ temperature: '288.15',
|
|
|
length: 1,
|
|
|
area: 1,
|
|
|
momx: 0.25,
|
|
@@ -597,7 +602,7 @@ const headerCellClassName = ({ column }) => {
|
|
|
return '';
|
|
|
};
|
|
|
|
|
|
-let qiemiansetshow = ref(false)
|
|
|
+let qiemiansetshow = ref(true)
|
|
|
const writeslicesolutionChange = (value) => {
|
|
|
if (value === 1) {
|
|
|
qiemiansetshow.value = true
|