CAD_KBE_01

download CAD_KBE_01

of 18

Transcript of CAD_KBE_01

  • 7/23/2019 CAD_KBE_01

    1/18

    Computer Aided Design

    Brasov, Nov 2015

  • 7/23/2019 CAD_KBE_01

    2/18

    2

    Content

    Presentation of key KBE concepts

    CATIA Knowledge Advisor

    Using Parameters

    Using Formulas Using Rules

  • 7/23/2019 CAD_KBE_01

    3/18

    3

    What is Knowledge Based Engineering?

  • 7/23/2019 CAD_KBE_01

    4/18

    4

    What is Knowledge Based Engineering?

  • 7/23/2019 CAD_KBE_01

    5/18

    5

    The KBE system

  • 7/23/2019 CAD_KBE_01

    6/18

    6

    KBE applications

  • 7/23/2019 CAD_KBE_01

    7/18

    7

    KBE applications

  • 7/23/2019 CAD_KBE_01

    8/18

    8

    CATIA Knowledge modules

    Knowledge Advisor-provide recommendations about the accuracy andpossibilities for development of a product.

    Knowledge Expert-perform verification of a project in relation to apredefined set of rules and standards.

    Product Knowledge Template -allow the use of knowledge for similar

    items by defining a general model (template) Business Process Knowledge Template capture best practice and

    know how

    Product Functional Definition define functional description of theproduct and the interactions between the systems

    Product Function Optimization- allows the functional optimizationbased on TRIZ methodology

  • 7/23/2019 CAD_KBE_01

    9/18

    9

    CATIA Knowledge Advisor

  • 7/23/2019 CAD_KBE_01

    10/18

    10

    CATIA Knowledge Advisor

    Knowledge Advisor-based on rules

    The ruleis a relationbetween variousparameterswhich may be restricted using

    formulas

    Rule Relation= between Parameters

    Restrictions(formulas)

  • 7/23/2019 CAD_KBE_01

    11/18

    11

    KWA- settings

    Tools>Options>General>Parameters and Measure, Knowledgetab, check boxes

    With Valueand With Formula

  • 7/23/2019 CAD_KBE_01

    12/18

    12

    KWA- settings

    Tools>Options...>Infrastructure>Part Infrastructure, Display tab, check

    Relationsand Parametersboxes

  • 7/23/2019 CAD_KBE_01

    13/18

    13

    KWA- Using Parameters

    Click the Icon. The Formulas dialog box is displayed.

  • 7/23/2019 CAD_KBE_01

    14/18

    14

    KWA- Using Parameters

    Define multiple values for a parameter.

  • 7/23/2019 CAD_KBE_01

    15/18

    15

    KWA- Using formulas

    Click the Icon. The Formulas dialog box is displayed.

    6

  • 7/23/2019 CAD_KBE_01

    16/18

    16

    KWA- Using rules

    Access the Knowledge Advisor workbench from

    the Start>Knowledgewaremenu.

    Click the Icon, add data an press ok.

  • 7/23/2019 CAD_KBE_01

    17/18

    17

    KWA- Using rules

    Add Visual Basic code for the rules in the editor.

    8

  • 7/23/2019 CAD_KBE_01

    18/18

    18

    KWA- Using rules

    VB Code Example

    if PadLength 20mm

    {

    PartBody\Hole.1\Diameter = 20mm

    }

    else if PadLength > 50mm and PadLength < 100mm{

    PartBody\Hole.1\Diameter = 50mm

    }

    else if PadLength >= 100mm

    {

    PartBody\Hole.1\Diameter = 80mm}