You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
709 B
31 lines
709 B
//
|
|
// Created by cflin on 4/17/23.
|
|
//
|
|
#include <string>
|
|
#include "SimTargetOption.h"
|
|
namespace ssim{
|
|
const std::string SimTargetOption::TARGET_NAME[SimTargetOption::ENUM_SIZE] = {
|
|
"位移范数",
|
|
"位移-X",
|
|
"位移-Y",
|
|
"位移-Z",
|
|
"应力范数",
|
|
"冯氏应力",
|
|
"应力-X",
|
|
"应力-Y",
|
|
"应力-Z",
|
|
"柔顺度"
|
|
};
|
|
const std::string SimTargetOption::TARGET_UNIT[SimTargetOption::ENUM_SIZE] = {
|
|
"m",
|
|
"m",
|
|
"m",
|
|
"m",
|
|
"Pa",
|
|
"Pa",
|
|
"Pa",
|
|
"Pa",
|
|
"Pa",
|
|
"J"
|
|
};
|
|
};
|