GND Copper 를 씌우고나서

서로 다른 Layer 의 Copper 사이에 Via 를 넣고 싶으면

Route-Connect 를 선택하고 원하는 곳에 더블 클릭을 하면 된다.

 

참고출처 : http://cafe.naver.com/sosarun/6351?social=1

 

'[old 정리중] study > ORCAD(PCB)' 카테고리의 다른 글

[Artwork warning] Photoplot window exceeds film size  (0) 2012.11.29
SolderMask , PasteMask 차이점  (0) 2012.11.29
참고 싸이트  (0) 2012.11.26
ERROR[NET0016]  (0) 2012.11.19

Creat artwork 으로 artwork 생성시

아래와 같은 warning 이 발행하면

 

Photoplot window (??? x ???) exceeds film size (??????? x ???????)

 

이는 말그대로 현재 화면의 view 가 flim size 보다 크다는 말이다.

 

따라서, 이는

Setup-design parameter editor 에서의 Extens - Width, Height  만큼

Manufacture-General Parameters-Film size limits - Max X, Max Y 를 키워주면 된다.

 

 

참조 출처 : 당근이 싸이트...

http://cafe.naver.com/carroty/113492

'[old 정리중] study > ORCAD(PCB)' 카테고리의 다른 글

GND Copper 를 씌우고 나서 GND Via 를 넣고 싶을때  (0) 2012.11.29
SolderMask , PasteMask 차이점  (0) 2012.11.29
참고 싸이트  (0) 2012.11.26
ERROR[NET0016]  (0) 2012.11.19

출처: 당근이까페

http://cafe.naver.com/carroty/174779

 

Begin layer : 실제 동박의 크기

Soldermask : 녹색 코팅을 입히지 않을 영역

Pastemask : 크림(자삽 후 디핑시에 부품이 떨어지지 않도록하는) 을 바르지 않을 영역

                   (보통은 잘 사용하지 않음)

 

 

Begin layer 와 soldermask 의 크기가 같아도 PCB는 잘 나오지만

Begin layer 보다 soldermask 가 크면 패드위에 soldermask 턱이 생기지 않음. ?? <- 이건 잘 모르겠음.

 

1. DRC 에서 는 오류가 없었지만 BOM 에서는 ERROR [NET0016] 이 발생하는 경우

 

2. DRC 에서 ERROR [NET0016] 이 발생하는 경우

 

혹시 Report File 을 View Ouput 하도록 해 놓지 않았는지 확인해보고

체크가 되어 있다면 체크를 해제하고 다시 해보면 에러 없이 완료 된다.

 

GOSIMART 온라인 서점

http://www.gosiguide.co.kr/?pg=book&t=book

 

 

 

 

 

실시간 모터제어
0.0 | 네티즌리뷰 0건
이인석|홍릉과학출판사 |2011.08.22
페이지 389|ISBN 9788972839538|도서관 소장 정보 국립중앙도서관
판형 B5, 188*257mm
정가 22,000원

 

 

이인석 교수님 OPEN 강의 (Korea Open Courseware)

http://kocwblog.blog.me/110114830971

 

Solidworks 에서 작성한 모델을 CATIA 등으로 불러올 때,

STEP file 로 변환하여 주고 받는 경우가 많다.

 

그런데, 변환시 STEP file은 AP203 또는 AP214 중 선택 가능한데

차이는 아래와 같다.

 

- What is the difference between .STEP file formats AP203 and AP214?

 

Generally, AP203 is a "general" STEP format.

AP203 defines the geometry, topology, and configuration management data of solid models for mechanical parts and assemblies. This file type does not manage Colors and Layers.

AP214 has everything a AP203 file includes, but adds colors, layers, geometric dimensioning and tolerance, and design intent. AP214 is considered an extension of AP203.

 

 

출처 : http://support1.geomagic.com/link/portal/5605/5668/Article/643/What-is-the-difference-between-STEP-file-formats-AP203-and-AP214

시간 측정이 필요할 때,

timegettime , GetTickCount , rdtsc 등 보다는 QueryPerformanceCounter 의 사용을 권장한다.

물론 주의 사항도 있다.

참고 : http://sweeper.egloos.com/2820035

 

사용법은 아래와 같다.

 

 

1. 변수정의

 LARGE_INTEGER m_CPUFreq; //freq. (초당 clock 수)

 LARGE_INTEGER m_CPUClock1; // 시작 count

 LARGE_INTEGER m_CPUClock2; // 종료 count

 double m_SecInterval; // m_CPUClock1~2 사이의 시간 간격, 단위 sec

 

 

2. 시간 측정

// 현재 cpu의 freq. 를 측정하고

// 시간을 측정하고자 하는 두구간의 clock 을 측정한 후

//clock 차이를 freq. 로 나누어 준다.

 

if(QueryPerformanceFrequency(&m_CPUFreq)) //CPU Freq. 측정

{

    QueryPerformanceCounter(&m_CPUClock1); // 첫번째 count 측정

}

.

.

.

 QueryPerformanceCounter(&m_CPUClock2); // 두번째 count 측정

 

 m_SecInterval =  (double) ( m_CPUClock2.QuadPart

  - m_CPUClock1.QuadPart ) /m_CPUFreq.QuadPart;   // 시간 계산

 

 

 

// 참고 //////////////////////////

// LARGE_INTEGER temp;

//

// QueryPerformanceFrequency(&temp)

// 반환값 : 해당 PC가 QueryPerformanceCount 를 지원할 때 TRUE (아니면 FALSE)

// 결과 : temp.lpFrequency -> 초당 clock 수가 저장됨.

//

// QueryPerformanceCounter(&temp)

// 결과 : temp.QuadPart -> 현재 CPU count가 저장됨.

 

 

+ Recent posts