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);//設置頂點數(shù)

? ? ? ? ? ? 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

版權聲明:本文為博主原創(chuàng)文章,轉(zhuǎn)載請附上博文鏈接!

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容