<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<Title>Simulation Report</Title>
</head>
<body>
<script id="JSInclude" src="Cadence_XIM.js" type="text/javascript"></script>
<script id="JSIncludeBasic" src="Cadence_Basic.js" type="text/javascript"></script>
<script type="text/javascript" src="scripts/ToolTip.js"></script>
<style type="text/css">
ul,li, p, p.text { font-family:"Calibri"; font-size:12.0pt; font-weight:normal; }
h1,h2,h3,h3.text{font-family:"Calibri";}
p.pass { color:green;}
p.fail { color:red;}
table {border-collapse: collapse; border: 1px outset black;}
td.thicktopborder {border-top-width:3px;}
td.thickbottomborder {border-bottom-width:3px;}
td.thicktopbottomborder {border-top-width:3px;border-bottom-width:3px;}
td {border:1px inset black;padding: 5px 5px 5px 5px;font-family:"Times New Roman";font-size:9.0pt}
.titlecolumn {text-align:left; white-space:normal;}
.datacolumn {text-align:center;white-space:normal;}
.titlerow{color:#243F60;border-bottom-width:3px;}
td.dataleftborder2 {
border-left:1px solid #D0D0D0;
}
td.dataleftborder3 {
border-left:1px solid #D0D0D0;
font-size:11.0pt;
font:bold;
}
td.colorMaxMin {
font-size:11.0pt;
font:bold;
}
td.colorMaxMin1 {
color:#243F60;
font-size:12.0pt;
font:bold;
}
td
{
vertical-align:top;
}
td.noborder{border : 0px;font-family:"Calibri"; font-size:12.0pt; font-weight:normal;padding: 0px 5px 0px 0px;}
td.noborder2{border : 0px;font-family:"Times New Roman";font-size:9.0pt; font-weight:normal;padding: 0px 5px 0px 0px;}
li.intable{font-family:"Times New Roman";font-size:9.0pt;}
td.BiggerFont{font-size:12.0pt}
td.thickbottomborderBiggerFont {border-bottom-width:3px; font-size:12.0pt;}
table.noborder {border-collapse: collapse; border: 0px; bordercolor: #000000; }
table.noborder2 {border-collapse: collapse; border: 0px; margin-left: 7px; }
p.image {width:700px; padding:25px 0 0 0;}
p.curve {width:700px; padding:25px 0 0 0;}
#color1 {
BACKGROUND-COLOR: #CAE5E8;
}
#color3 {
BACKGROUND-COLOR: #DAF5F8;
}
#color2 {
}
body {
}
.tipbox { width:600px; margin:40px auto; text-align:left; background:#FFF; padding:1px;border:1px solid #CCC;}
.tipbox h2{ color:#666; font-size:16px; font-family:Verdana; font-weight:bolder; margin:4px; padding:6px; font-style:italic; background:#B9E55C; }
.tipbox p{ text-indent:24px; line-height:140%; padding:2px 10px; margin:0;}
.tipbox p.code {color:#666;; text-indent:0px; border:1px dashed #BFF44D; margin:10px; padding:4px; background:#E2FAAD;}
.tooltipclass123123
{
background:#F5FCDE;
border:1px solid #9EC180;
border-bottom:4px solid #9EC180;
width:300px;
padding:0;
margin:0;
position:absolute;
text-align:left;
filter:alpha(opacity:93);
opacity:9.3;
}
.tooltipclass123123 .tip
{
text-indent:20px;
margin:0;
padding:4px;
line-height:130%;
}
.tooltipclass123123 .url
{
margin:0;
padding:4px;
line-height:130%;
border-top:1px dashed #9EC180;
color:blue;
text-align:right;
}
/* table of contents formatting */
#tocwrapper {
text-align: left;
width: 520px;
}
#toc {
list-style: none;
margin-bottom: 20px;
}
#toc li {
overflow: hidden;
padding-bottom: 2px;
}
#toc a,
#toc span {
display: inline-block;
background: #fff;
position: relative;
bottom: -4px;
}
#toc a {
padding: 0 0 3px 2px;
}
#toc span {
float: left;
padding: 0 2px 3px 0;
}
</style>
<script type="text/javascript">
// ===================================================
// Tooltip V1.01
// 为超级连接加上样式的js
// Author:Huacn Lee
// Blog: Huacn.cnblogs.com
// ===================================================
var _BarIdName = "___tooltipbar";
var _BarTitleIdName = "___tooltipbartitle";
var _BarLinkIdName = "___tooltipbarlink";
//页面上调用的方法
function initToolTip()
{
initTipbar();//创建tooltip显示区域
//initStyle();//注册CSS样式
//alert(document.getElementsByTagName("head")[0].innerHTML);
var tagaArry = new Array();
var tag = null;
// tagaArry = document.getElementsByTagName("a");
tagaArry = document.getElementsByTagName("img");
for(var i=0;i<tagaArry.length;i++)
{
if(tagaArry[i].className != "needWheel")
{
continue;
}
//alert(i);
tag = tagaArry[i];
//alert(tag.href);
var oldTitle = tag.title;
//为超级连接加入鼠标事件
//进入连接
tag.onmouseover = function()
{
showTipbar(this);
};
//离开连接
tag.onmouseout = function()
{
hideTipbar(this);
}
//在连接上移动,设置坐标
tag.onmousemove = function()
{
setTipLocation();
}
//为Firefox加入mousemove的事件侦听,因为window.eventFirefox没有办法用
if(tag.addEventListener)
{
tag.addEventListener('mousemove', setTipLocation, true);
}
}
}
//显示tooltip
function showTipbar(tag)
{
//alert(tag);
var tipbar = $(_BarIdName);
var tipTitle = $(_BarTitleIdName);
var tipLink = $(_BarLinkIdName);
// tipTitle.innerHTML = tag.title;
// tipLink.innerHTML =tag.href;
tipTitle.innerHTML = "Alt + wheel to Zoom in and Zoom out img";
tipLink.innerHTML ="";
tag.title = "";
tipbar.style.display = "";
}
//隐藏tooltip
function hideTipbar(tag)
{
var tipbar = $(_BarIdName);
var tipTitle = $(_BarTitleIdName);
tipbar.style.display = "none";
tag.title = tipTitle.innerHTML;
}
//初始化tooltip区域
function initTipbar()
{
var div = document.createElement("div");
div.className = "tooltipclass123123";
div.id = _BarIdName;
var divTitle = document.createElement("p");
divTitle.id = _BarTitleIdName;
divTitle.className = "tip";
div.appendChild(divTitle);
var divLink = document.createElement("p");
divLink.id = _BarLinkIdName;
divLink.className = "url";
div.appendChild(divLink);
document.body.appendChild(div);
div.style.display = "none";
//alert(div.innerHTML);
}
//设置tipbar的位置
function setTipLocation(e)
{
var intX=0,intY=0;
//判断有没有收到firefox的监听的event
if(e == null)
{
//当没收到时用window.event IE与Opera支持的
e = window.event;
}
if(e.pageX || e.pageY)
{
intX=e.pageX; intY=e.pageY;
}
else if(e.clientX || e.clientY)
{
if(document.documentElement.scrollTop)
{
intX=e.clientX+document.documentElement.scrollLeft;
intY=e.clientY+document.documentElement.scrollTop;
}
else
{
intX=e.clientX+document.body.scrollLeft;
intY=e.clientY+document.body.scrollTop;
}
}
//取得tooltip对象
var tipbar = $(_BarIdName);
tipbar.style.top = (intY+20)+"px";
tipbar.style.left = (intX +10)+"px";
}
//注册css
function initStyle()
{
var linkstyle = document.createElement("link");
linkstyle.setAttribute("href","styles/tooltip.css");
linkstyle.setAttribute("rel","stylesheet");
linkstyle.setAttribute("type","text/css");
linkstyle.setAttribute("media","screen");
document.getElementsByTagName("head")[0].appendChild(linkstyle);
}
function $(re)
{
return document.getElementById(re);
}
</script>
<script type="text/javascript">
function doWheel(ob)
{
if(event.altKey)
{
ob.style.zoom*=event.wheelDelta>0?1.25:0.8;
return false;
}
return true;
}
function doJump(tagID)
{
if(tagID != '')
{
//document.getElementById(tagID).scrollIntoView();
document.getElementById('logo').innerHTML = '<p><img width=10% src=SingleCurveV3eyeDiagram.png></img><br></p>';
}
}
function doImageChangeOrigSize(tagID, imagetagid, labelId, labelStr)
{
if(tagID != '')
{
document.getElementById(tagID).innerHTML = '<p ><img src=\"' + document.getElementById(imagetagid).src + '\" onmousewheel=\"return doWheel(this)\"></p>';
doLabelChange(labelId, labelStr);
}
}
function doImageCh
不觉明了
- 粉丝: 3478
- 资源: 5759
最新资源
- 信息的熵(含AC代码)
- 文章配套使用的DICOM文件,已经匿名化
- Buck电路-电容电感计算
- 带隙基准电路 包含非常详细的的视频讲解(和本电路结构99%一样),以及0.18bcd工艺,电路文件,仿真测试文档 输入电压5V
- 四轮转向控制 包括: 驾驶员模型(采用单点预瞄)控制前轮转角 理想值计算:质心侧偏角,横摆角速度 后轮转向控制被设计:滑模控制
- 该教程为永磁无刷直流电机控制外电路参数详细说明,举例子详细介绍了永磁无刷电机控制电路参数和计算方法 永磁无刷电机
- 考虑不同充电需求的电动汽车有序充电调度方法matlab 复现A coordinated charging scheduling
- FOC矢量控制永磁同步电机全速域无位置传感器控制 1. 零低速域,采用无数字滤波器高频方波注入法, 2. 中高速域采用改进的滑膜
- 在区间集决策系统中基于双粒化和三视角不确定性度量的系统性属性约简
- 车辆纵向分层跟踪控制 carsim 与 simulink联合仿真实现车辆速度跟踪控制 上层:双PID 控制器 下层:逆驱动模型、
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈