This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 組織目標 | |
| 0. 50期下期予算と品質コスト目標達成(U-Probe) | |
| 1. TOPプロジェクト推進による競争力のある製品を提供 | |
| 2. コストと作業効率の追求 | |
| 3. 不具合撲滅・未然防止、潜在リスクの炙り出し | |
| 4. 新製品・最先端の技術開発 | |
| 5. 次世代を見据えた技術開発と改革 | |
| 6. 情報収集力の強化 | |
| ######################################################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################################## | |
| 目標: | |
| プロセス欄: | |
| 実績欄: | |
| ############################################################################################## | |
| 目標: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### 行動評価欄 | |
| 項目:原理原則 | |
| 行動目標: | |
| 普段の検討・検図業務の中で、「だろう」という思考に陥らないよう戒め、常に要求された仕様とその背景にある原理、原則である設計ルールに立ち返り発想し判断して業務にあたる。 | |
| 項目:観・感・勘 | |
| 行動目標: | |
| 日頃から過去の製品事例の設計コンセプトや評価中の新規要素をよく観察し、応用できないか考え、従来の設計コンセプトの延長では単純に対処しきれない案件に対し展開する。又は設計上のネックの解消のための客先提案へ活かす。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ◇項目:原理原則 | |
| 行動目標: | |
| 検討・検図業務の中で、漫然と実績品と同じと思考停止することなく、なぜその仕様でなくてはならないか、なぜその確認方法でなくてはならないか、理由(原理・原則)を意識して業務にあたる。 | |
| 行動実績:〇 | |
| 自分が担当している、高難易度製品の検図用ネットリスト作成業務において、入手した各種設計資料を鵜?みにしないように、常に製品仕様に立ち返り、再度チェックを入れながら作成を行い、通期で接続起因の設計ミス0を達成した。 | |
| ◇項目:観・感・勘 | |
| 行動目標: | |
| 製品の検討を行うにあたり、自分の担当していない過去の製品事例の設計コンセプトや新規要素を日頃から観察・記憶し、良いと思ったものを、客先の枠に囚われずに積極的に取り入れ、効率よく設計コンセプトに展開する。又は設計上のネックの解消のための客先提案へ活かす。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 50組織目標 *各項目下は関係ありそうな単語 | |
| //0. 50期上期予算と品質コスト目標達成(U-Probe) | |
| // | |
| // | |
| //1. TOPプロジェクト推進による競争力のある製品を提供 | |
| // 不具合撲滅で品質コストを抑え、未然防止で利益を生む。TOP-PJのWGをベースに効率よく効果的にとり組む | |
| // ①革新的な技術開発によるコストダウンの追求 | |
| // ②革新的な技術開発によるTAT短縮の追求 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 組織目標 | |
| 1.49期下期予算と品質コスト目標達成(U-Probe) | |
| 2.不具合撲滅・未然防止の更なる推進 | |
| 3.コストと作業効率の追求 | |
| 4.新製品・最先端の技術開発 | |
| 5.次世代を見据えた技術開発と改革 | |
| @@@トピック | |
| 2-1-3: | |
| チェックシート・設計ドキュメント内で課内ローカルや分かりにくい表現の見直し、解釈ミスを起こさないように分かりやすい表現にする |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/ruby | |
| # coding: utf-8 | |
| #require 'pry' | |
| #DGB_FLAG = true | |
| #binding.pry if DGB_FLAG | |
| # Commentary: | |
| # 一対多型の安定マッチングによるDUTアサイン試作 | |
| # 基底データ構造 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/ruby | |
| # coding:utf-8 | |
| require 'pry' | |
| #require 'bigdecimal' | |
| RAD = Math::PI/180.0 | |
| EPS = 1e-10 | |
| # SI:シンボル情報 | |
| si = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/ruby | |
| # coding:utf-8 | |
| require 'pry' | |
| section = [] | |
| netname = '%dummy-net%' | |
| node = '%dummy-node%' | |
| File.foreach(File.expand_path(ARGV[0])) do |line| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/ruby | |
| # coding: utf-8 | |
| # Commentary: | |
| # 一対多型の安定マッチングによるDUTアサイン試作 | |
| # 基底データ構造 | |
| class Base | |
| def initialize(prop = nil, priority = []) | |
| # @prop: |
NewerOlder