AUTODESK

echo "export PATH=/usr/local/bin:$PATH" >> ~/.bash_profile

curl --user t_liji https://raw.git.autodesk.com/github-solutions/adsk-git/master/install.sh | sh

Git帐密:

t_liji

Autodesk@1

Autodesk帐密、Wifi、

t_jili

Lljm846846..,,

本机帐密

Autodesk@1

Bundle ID:

com.autodesk.ARGameTest.ARHelloWorld

Autodesk.servise.now.com/askhr




Ab:

Manufatcure future group

Structure phd 

Adsk 10 years 

Robotics,AI 

More: industrial robotics 

Light weighting x innovating

Generative design: can disrrupt design is done ——— need to assume model to be linear static 

—— have lots of restrictions 

Infrastructure was right

CAD industry in right direction: dialetic modeling like fusion

Unshape: competitor of fusion

Design driven by idea —— generative design 

Manufacture abililty issue: 

Work on automotive industry,try to solve cars x space for devices 

Cars needs more sensors and components—no enough space,

Produce cravices as part of design, send to other country, use hands to put things in

Convert wire hardness to PCB —part will be attached to the robot

Try to scratch things onto the panel of the car

Workflow: start: 

Wire hardness build on project,do some WH first. 

Ollision design go inside design engineer level, look inside the possibsility and work with OEM side, evaluate and draw AutoCAD model inside

On paper first, test and optimized and test in the car body and usually a push back—between OEM and wire hardness producer

Panels sail to other countries, get wired, get assembled send back

——create and attach to system by robots

And no need for design cavaties

Try: use generative design to design the space for wires 

The other thing: construction industry agriculture industry 

Catapillar company:    concrete: should use robot tot concrete houses. 

Concrete is old material

USC : machine todo vertical walls,cost too high 

Robot connect woods or frames

Interest in Nasa project: build habitats on other projects. 

Concrete: too heavy,may use soil to make construction 

Think to make house with plastic bottles and soils to make house on Mars

Prototypse to build houses with up with robotics. 

DED techinique from Pan Computing from Netfab simulation —— simulating but not everything

Ultimate design to meet ultimate systems. 

Not unified needs: 

Robot can deposit many things, when you layer the cad model for the robot, and deformation is there:

Give high level picture of the robot moving pattern

Qualativie answer of how to callibrate the machine

 If wear AR goggle, want to see alternative reality how machines move in specific parameter

Qualatative analysis: robot is doing in open space, depends on peoples vision, not totally simulated

simulation for different building speed and tools 

suggestion: use autodesk simulation tools to do disign, not in visualizing, but put that in distort design or indicate in structure

 

Tim Paul: 

Fusion team: 4 years PM for turning development team ——set up documentation(mentioned Hans) 

—— CJ works with him,responsible for tooling library,automation workflows……

Machining background since 90’s,manage workshops. 

Most ideal….

Tool library,manufacture engineer oversaw

Deal with CAD data 

More insight in relationship: 

Legitimate shops 

Two way communication in some places like gener motors(decent)——have team identify manufacturing problem,summarize 

Design through manufactoring 

Build tools to help engineer & designer team to analyse manufacturability of models 

CAM/CAD communication in small companaies ——

Left outthree ——a machine shop 

Director of engineering ——— lot of communication between    &   

Dioffence standards ———— 

Annotation system — 

Team shop floor : better documentation ——— A need to program for CNC machine and

Engineer design things with bad manufacturability ——make it expensive 

Things go wrong betwen set up guy and CAM machine ——bad results

Add value to shop floor ——— set up string line,automated,digital,documentation. 

Most ideal programmer set up situation: machine at garage ——programe one night,next night set up machine 

making communication more simple,clear,…..

Initials setup for big companies 

Left —— leave a documentation package ——lot information —go wrong,specifically 

machine set up : 

Tech applying is AR,so 

Decent for teams

setup sheets — go to floor(not use becuase not efficinet for data they are llooking for 

Betweern programmer office and shop floor —— should be more efficiently 

May have a setup documatation package demo 

Last few pages to show tool path—— got most feedback about visualization —— could fit in AR 

——MACHINEST PEOPLE need it to be efficient 

Not only target them but convince people to use tools only if clearly show their efficiency. 

Andrea:


What would make a successful project for summer? 

AR capality 

Disclaim: professional in 3D prinitnig proess

Institutionally focus too much in generative design

Do less with additive,not as justive 

Technical prodiction of buld simulation stuff is slow,and could be some workflow visualization prduce,—SLOW

Metal priniting for lander projects last fall ———find challenging ——process is very cereal,and manufacturing is defining shape in bunch of different proces, 

need to be compatible,coming exaple: 

Post machined ——— designers are qualified to think through the proeceess, 

Filter through / visualize through constrains and different features of different process,think through visualizing potentially —how  to fix through without machine process

Machine part: iteration and optimization ———tool selection and 

JPL projects: mapping the assembly process to opticles and 

London: VR assembly experience for Landard and debug —— move things together 

Show intermediate states 

Fixure and place 

Describe with generative design and biggest problem -=—— to predict,=——— have great data and figure out if 24 components and part of them are generative 

Discover —— way more time —— fasten and assemble sequence —— 

converging in a sequence having it 

Things occulde each other —— VR simulation just for fun 

Get more fadality —— percision ——clearances between things are pretty precise to the 

JPL 3D scanning to digital assembly to know 

Tele-A program —— wrapped ideation studio 

Scale models to 

Need lift frame to hold the thing with seven parts — complicate before drop into lander. 

how to string assembly states 

Explore internal features 

ARPersist

Visualling print sands from outside and inside geometry somewhere 

WEBXR 

Morgan fabien



private GameObject clone;

    private LineRenderer line;

    private int index;

    public GameObject tf;

    // Update is called once per frame

    void Update()

    {

        if (Input.GetMouseButtonDown(0))

        {

            clone = (GameObject)Instantiate(tf, tf.transform.position, transform.rotation);//克隆一个带有LineRender的物体

            line = clone.GetComponent<LineRenderer>();//获得该物体上的LineRender组件

            line.SetColors(Color.blue, Color.red);//设置颜色

            line.SetWidth(0.2f, 0.1f);//设置宽度

            index = 0;

        }

        if (Input.GetMouseButton(0))

        {

            index++;

            line.SetVertexCount(index);//设置顶点数

            line.SetPosition(index - 1, Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y, 15)));//设置顶点位置

        }

    }

}

---------------------

作者:Unity_阿黄

来源:CSDN

原文:https://blog.csdn.net/ldy597321444/article/details/78030196

版权声明:本文为博主原创文章,转载请附上博文链接!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 156,423评论 4 359
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,339评论 1 289
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 106,241评论 0 237
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,503评论 0 203
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 51,824评论 3 285
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,262评论 1 207
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,615评论 2 309
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,337评论 0 194
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 33,989评论 1 238
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,300评论 2 240
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,829评论 1 256
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,193评论 2 250
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,753评论 3 230
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 25,970评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,708评论 0 192
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,295评论 2 267
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,207评论 2 258

推荐阅读更多精彩内容